1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
(function(window) {
'use strict';
new ExceptionHandler();
window.app = window.app || {};
app.HelpPageFactory = Polymer({
is: 'help-page',
behaviors: [
Chrome.LocalizeBehavior,
],
properties: {
githubPath: {
type: String,
value: function() {
return app.Utils.getGithubPath();
},
readOnly: true,
},
githubPagesPath: {
type: String,
value: function() {
return app.Utils.getGithubPagesPath();
},
readOnly: true,
},
},
_computeMailToUrl: function(subject) {
return app.Utils.getEmailUrl(subject, app.Utils.getEmailBody());
},
_computeVersion: function() {
const text = Chrome.Utils.getVersion();
return encodeURIComponent(text);
},
});
})(window);