diff --git a/mobile/android/chrome/content/aboutPrivateBrowsing.js b/mobile/android/chrome/content/aboutPrivateBrowsing.js new file mode 100644 index 000000000000..9b04825309cd --- /dev/null +++ b/mobile/android/chrome/content/aboutPrivateBrowsing.js @@ -0,0 +1,16 @@ +/* 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"; + +const Ci = Components.interfaces; +const Cu = Components.utils; + +Cu.import("resource://gre/modules/PrivateBrowsingUtils.jsm"); + +if (!PrivateBrowsingUtils.isWindowPrivate(window)) { + document.addEventListener("DOMContentLoaded", function () { + document.body.setAttribute("class", "normal"); + }, false); +} diff --git a/mobile/android/chrome/content/aboutPrivateBrowsing.xhtml b/mobile/android/chrome/content/aboutPrivateBrowsing.xhtml index 68564d6fcfb7..fd844564ee00 100644 --- a/mobile/android/chrome/content/aboutPrivateBrowsing.xhtml +++ b/mobile/android/chrome/content/aboutPrivateBrowsing.xhtml @@ -21,18 +21,6 @@ - @@ -46,5 +34,7 @@

&privatebrowsingpage.moreInfo;

+ + diff --git a/mobile/android/chrome/jar.mn b/mobile/android/chrome/jar.mn index dd84e304deed..9a165e9afe5f 100644 --- a/mobile/android/chrome/jar.mn +++ b/mobile/android/chrome/jar.mn @@ -16,8 +16,9 @@ chrome.jar: content/aboutDownloads.xhtml (content/aboutDownloads.xhtml) content/aboutDownloads.js (content/aboutDownloads.js) content/aboutFeedback.xhtml (content/aboutFeedback.xhtml) - content/aboutFeedback.js (content/aboutFeedback.js) + content/aboutFeedback.js (content/aboutFeedback.js) content/aboutPrivateBrowsing.xhtml (content/aboutPrivateBrowsing.xhtml) + content/aboutPrivateBrowsing.js (content/aboutPrivateBrowsing.js) content/aboutReader.html (content/aboutReader.html) content/aboutReader.js (content/aboutReader.js) content/Readability.js (content/Readability.js)