| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 (function() | 1 (function() |
| 2 { | 2 { |
| 3 var visibleTab; | 3 var visibleTab; |
| 4 var container; | 4 var container; |
| 5 | 5 |
| 6 window.toggleMore = function() | 6 window.toggleMore = function() |
| 7 { | 7 { |
| 8 if (container.className == "hidden") | 8 if (container.className == "hidden") |
| 9 container.className = visibleTab || getDefaultTab(); | 9 container.className = visibleTab || getDefaultTab(); |
| 10 else | 10 else |
| (...skipping 21 matching lines...) Expand all Loading... | |
| 32 checkEdgeSupport(); | 32 checkEdgeSupport(); |
| 33 } | 33 } |
| 34 | 34 |
| 35 function checkEdgeSupport() | 35 function checkEdgeSupport() |
| 36 { | 36 { |
| 37 if (!window.navigator.userAgent) | 37 if (!window.navigator.userAgent) |
| 38 return; | 38 return; |
| 39 | 39 |
| 40 var content = document.getElementById("content"); | 40 var content = document.getElementById("content"); |
| 41 var match = window.navigator.userAgent.match(/Edge\/\d+\.(\d+)/); | 41 var match = window.navigator.userAgent.match(/Edge\/\d+\.(\d+)/); |
| 42 if (match && match[1] >= 14361 && content.classList.contains("edge")) | 42 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
| |
| 43 content.classList.add("edge-supported"); | 43 content.classList.add("edge-supported"); |
| 44 } | 44 } |
| 45 | 45 |
| 46 init(); | 46 init(); |
| 47 })(); | 47 })(); |
| OLD | NEW |