Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 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 | 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/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 "use strict"; | 5 "use strict"; |
6 | 6 |
7 let platform = "edgehtml"; | |
8 let platformVersion = null; | |
9 let application = "edge"; | |
10 let applicationVersion = "0"; | |
11 | |
12 let regexp = /(\S+)\/(\S+)(?:\s*\(.*?\))?/g; | |
13 let match; | |
14 | |
15 while (match = regexp.exec(navigator.userAgent)) | |
16 { | |
17 let app = match[1]; | |
18 let ver = match[2]; | |
19 platformVersion = ver; | |
20 } | |
21 | |
22 // not a Chromium-based UA, probably modifed by the user | |
Jon Sonesen
2017/06/07 11:08:43
Not sure if I should change the comment, seems it
| |
23 if (!platformVersion) | |
24 { | |
25 application = "unknown"; | |
26 applicationVersion = platformVersion = "0"; | |
27 } | |
28 | |
29 exports.addonName = {{ basename|json }}; | 7 exports.addonName = {{ basename|json }}; |
30 exports.addonVersion = {{ version|json }}; | 8 exports.addonVersion = {{ version|json }}; |
31 | 9 |
32 exports.application = application; | 10 exports.application = "edge"; |
Sebastian Noack
2017/06/07 11:14:13
Since this code is only bundled with the build for
Jon Sonesen
2017/06/07 11:41:38
Acknowledged. What about the logic if platform ver
Sebastian Noack
2017/06/07 11:51:46
If the regular expression fails we should still se
Jon Sonesen
2017/06/07 13:09:28
Acknowledged.
| |
33 exports.applicationVersion = applicationVersion; | 11 exports.applicationVersion = "0"; |
34 | 12 |
35 exports.platform = platform; | 13 exports.platform = "edgehtml" |
36 exports.platformVersion = platformVersion; | 14 exports.platformVersion = "0"; |
15 | |
16 let match = /\bEdge\/(\d+(?:\.\d+)?)\b/.exec(navigator.userAgent); | |
17 if (match) | |
18 exports.platformVersion = match[1]; | |
LEFT | RIGHT |