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

Unified Diff: static/js/index.js

Issue 29341378: Issue 4027 - make the download button available for windows insider users (Closed)
Patch Set: Created May 17, 2016, 12:37 p.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 | « static/css/index.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: static/js/index.js
===================================================================
--- a/static/js/index.js
+++ b/static/js/index.js
@@ -29,6 +29,18 @@
function init()
{
container = document.getElementById("more-container");
+ checkEdgeSupport();
+ }
+
+ function checkEdgeSupport()
+ {
+ var content = document.getElementById("content");
+ if(content.className.indexOf("edge") == -1 || !window.navigator.userAgent)
Sebastian Noack 2016/05/17 17:02:11 If you put the check here below the UA check, it w
Sebastian Noack 2016/05/17 17:02:11 Nit: Missing space after "if".
saroyanm 2016/05/18 12:03:41 Done.
saroyanm 2016/05/18 12:03:41 Done.
+ return;
+
+ var match = window.navigator.userAgent.match(/Edge\/(\d+.\d+)/);
+ if (match && parseFloat(match[1]) >= 14.14342)
+ content.classList.add("edge-supported");
}
init();
« no previous file with comments | « static/css/index.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld