Merge pull request #10309 from sandyarmstrong/ie-show-fix

Fix show in IE11
This commit is contained in:
Alexandru Dima 2016-08-16 16:06:19 +02:00 committed by GitHub
commit 375f17eeba

View file

@ -965,7 +965,7 @@ export function emmet<T extends HTMLElement>(description: string): T {
export function show(...elements: HTMLElement[]): void {
for (let element of elements) {
element.style.display = null;
element.style.display = '';
}
}