| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* This Source Code Form is subject to the terms of the Mozilla Public | |
| 2 * License, v. 2.0. If a copy of the MPL was not distributed with this | |
| 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | |
| 4 | |
| 5 "use strict"; | |
| 6 | |
| 7 let platformVersion = "0"; | |
| 8 | |
| 9 let match = /\bEdge\/(\S+(?:\.\d+)?)\b/.exec(navigator.userAgent); | |
|
Sebastian Noack
2017/06/08 08:52:30
\S matches any non-whiespace characters, but we re
Jon Sonesen
2017/06/08 15:47:28
Done.
| |
| 10 if (match) | |
| 11 platformVersion = match[1]; | |
|
Sebastian Noack
2017/06/08 08:52:30
If you assign directly to exports.platformVersion
Jon Sonesen
2017/06/08 15:47:28
Done.
| |
| 12 | |
| 13 exports.addonName = {{ basename|json }}; | |
| 14 exports.addonVersion = {{ version|json }}; | |
| 15 | |
| 16 exports.application = "edge"; | |
| 17 exports.applicationVersion = "0"; | |
| 18 | |
| 19 exports.platform = "edgehtml" | |
| 20 exports.platformVersion = platformVersion; | |
| OLD | NEW |