 Issue 29541876:
  Noissue - Always show "Install" button for Microsoft Edge  (Closed)
    
  
    Issue 29541876:
  Noissue - Always show "Install" button for Microsoft Edge  (Closed) 
  | 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"); | 
| } |