mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1122480 - Part 3 - Remove preprocessor usage from aboutTelemetry.js. r=rvitillo
This commit is contained in:
parent
5f1b1e9c19
commit
e02249a633
@ -33,11 +33,8 @@ const DEFAULT_SYMBOL_SERVER_URI = "http://symbolapi.mozilla.org";
|
||||
// ms idle before applying the filter (allow uninterrupted typing)
|
||||
const FILTER_IDLE_TIMEOUT = 500;
|
||||
|
||||
#ifdef XP_WIN
|
||||
const EOL = "\r\n";
|
||||
#else
|
||||
const EOL = "\n";
|
||||
#endif
|
||||
const isWindows = (Services.appinfo.OS == "WINNT");
|
||||
const EOL = isWindows ? "\r\n" : "\n";
|
||||
|
||||
// Cached value of document's RTL mode
|
||||
let documentRTLMode = "";
|
||||
|
@ -27,7 +27,7 @@ toolkit.jar:
|
||||
content/global/aboutwebrtc/aboutWebrtc.xhtml (aboutwebrtc/aboutWebrtc.xhtml)
|
||||
* content/global/aboutSupport.js
|
||||
* content/global/aboutSupport.xhtml
|
||||
* content/global/aboutTelemetry.js
|
||||
content/global/aboutTelemetry.js
|
||||
content/global/aboutTelemetry.xhtml
|
||||
content/global/aboutTelemetry.css (aboutTelemetry.css)
|
||||
content/global/directionDetector.html
|
||||
|
Loading…
Reference in New Issue
Block a user