Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: include.preload.js

Issue 5197857351008256: Issue 343 - Fix element collapsing in Chrome 35 (Closed)
Patch Set: Created April 17, 2014, 10:39 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include.preload.js
===================================================================
--- a/include.preload.js
+++ b/include.preload.js
@@ -98,9 +98,9 @@
{
// <frame> cannot be removed, doing that will mess up the frameset
if (tag == "frame")
- target.style.setProperty("visibility", "hidden", "!important");
+ target.style.setProperty("visibility", "hidden", "important");
else
- target.style.setProperty("display", "none", "!important");
+ target.style.setProperty("display", "none", "important");
}
}
);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld