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

Unified Diff: static/js/index.js

Issue 29541876: Noissue - Always show "Install" button for Microsoft Edge (Closed)
Patch Set: Created Sept. 11, 2017, 5:12 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 | « includes/index.tmpl ('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
@@ -39,7 +39,7 @@
var content = document.getElementById("content");
var match = window.navigator.userAgent.match(/Edge\/\d+\.(\d+)/);
- if (match && match[1] >= 14361 && content.classList.contains("edge"))
+ if (match && match[1] >= 15063 && content.classList.contains("edge"))
Oleksandr 2017/09/12 00:25:57 It's outside the scope of this change, but I just
Sebastian Noack 2017/09/12 00:58:20 What would users see on XBox and Windows Phone, wh
juliandoucette 2017/09/12 11:47:17 I second Sebastian's question. Can you test this?
Oleksandr 2017/09/12 17:20:08 I am actually fairly confident Windows Store would
content.classList.add("edge-supported");
}
« no previous file with comments | « includes/index.tmpl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld