bug1855014-eksiseyler.com.js (659B)
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 * eksiseyler.com - Set window.loggingEnabled = false 9 * WebCompat issue #77221 - https://webcompat.com/issues/77221 10 * 11 * A scripting error on the site causes images to not load unless 12 * window.loggingEnabled = false 13 */ 14 15 /* globals exportFunction */ 16 17 console.info( 18 "loggingEnabled been set to true for compatibility reasons. See https://webcompat.com/issues/77221 for details." 19 ); 20 21 window.wrappedJSObject.loggingEnabled = false;