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

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

Issue 29454678: Issue 5085 - Add edgeInfo.js template for edge specific builds (Closed)
Patch Set: readd chrome logic, remove more chrome specific code from edge tmpl Created June 7, 2017, 1:08 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
OLDNEW
(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
8 let [app, platformVersion] = /(\S+)\/(\S+)(?:\s*\(.*?\))?/g.exec(navigator.userA gent);
Sebastian Noack 2017/06/07 13:26:13 Obviously, you didn't test that code. At very leas
Jon Sonesen 2017/06/07 13:56:07 My apologies, I made a mistake in my testing and j
9
10 // If regular expression fails, still set platformVersion to "0"
11 if (!platformVersion)
12 platformVersion = "0";
13
14 exports.addonName = {{ basename|json }};
15 exports.addonVersion = {{ version|json }};
16
17 exports.application = "edge";
18 exports.applicationVersion = "0";
19
20 exports.platform = "edgehtml"
21 exports.platformVersion = platformVersion;
OLDNEW

Powered by Google App Engine
This is Rietveld