Index: templates/edgeInfo.js.tmpl |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/templates/edgeInfo.js.tmpl |
@@ -0,0 +1,20 @@ |
+/* This Source Code Form is subject to the terms of the Mozilla Public |
+ * License, v. 2.0. If a copy of the MPL was not distributed with this |
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
+ |
+"use strict"; |
+ |
+let platformVersion = "0"; |
+ |
+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.
|
+if (match) |
+ 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.
|
+ |
+exports.addonName = {{ basename|json }}; |
+exports.addonVersion = {{ version|json }}; |
+ |
+exports.application = "edge"; |
+exports.applicationVersion = "0"; |
+ |
+exports.platform = "edgehtml" |
+exports.platformVersion = platformVersion; |