Skip to content

Commit

Permalink
Merge pull request #10309 from sandyarmstrong/ie-show-fix
Browse files Browse the repository at this point in the history
Fix show in IE11
  • Loading branch information
alexdima authored Aug 16, 2016
2 parents 00f1ead + 27b9860 commit 375f17e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/base/browser/dom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '';
}
}

Expand Down

0 comments on commit 375f17e

Please sign in to comment.