Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Merge pull request #21 from ebidel/master
Browse files Browse the repository at this point in the history
Fixes issue 191
  • Loading branch information
Yvonne Yip committed Jun 25, 2013
2 parents e560983 + a7ea077 commit abd3c8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/patches-custom-elements.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

// inject style sheet
var style = document.createElement('style');
style.textContent = 'element {display: none;} /* injected by platform.js */';
style.textContent = 'element {display: none !important;} /* injected by platform.js */';
var head = document.querySelector('head');
head.insertBefore(style, head.firstChild);

Expand Down
2 changes: 1 addition & 1 deletion lib/patches-mdv.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

// inject style sheet
var style = document.createElement('style');
style.textContent = 'template {display: none;} /* injected by platform.js */';
style.textContent = 'template {display: none !important;} /* injected by platform.js */';
var head = document.querySelector('head');
head.insertBefore(style, head.firstChild);

Expand Down

0 comments on commit abd3c8c

Please sign in to comment.