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 exports.addonName = {{ basename|json }}; |
| 8 exports.addonVersion = {{ version|json }}; |
| 9 |
| 10 exports.application = "edge"; |
| 11 exports.applicationVersion = "0"; |
| 12 |
| 13 exports.platform = "edgehtml" |
| 14 exports.platformVersion = "0"; |
| 15 |
| 16 let match = /\bEdge\/(\d+(?:\.\d+)?)\b/.exec(navigator.userAgent); |
| 17 if (match) |
| 18 exports.platformVersion = match[1]; |
OLD | NEW |