Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: templates/edgeInfo.js.tmpl

Issue 30061555: Noissue - Added info.locale (Closed)
Patch Set: Created Oct. 4, 2019, 11:54 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « templates/chromeInfo.js.tmpl ('k') | templates/geckoInfo.js.tmpl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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";
6
7 exports.addonName = {{ basename|json }};
8 exports.addonVersion = {{ version|json }};
9
10 exports.application = "edge"; 5 exports.application = "edge";
11 exports.applicationVersion = "0"; 6 exports.applicationVersion = "0";
12 7 exports.platform = "edgehtml";
13 exports.platform = "edgehtml"
14 exports.platformVersion = "0"; 8 exports.platformVersion = "0";
15 9
16 let match = /\bEdge\/(\d+(?:\.\d+)?)\b/.exec(navigator.userAgent); 10 let match = /\bEdge\/(\d+(?:\.\d+)?)\b/.exec(navigator.userAgent);
17 if (match) 11 if (match)
18 exports.platformVersion = match[1]; 12 exports.platformVersion = match[1];
OLDNEW
« no previous file with comments | « templates/chromeInfo.js.tmpl ('k') | templates/geckoInfo.js.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld