stub_common.js (584B)
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 window.attachEvent("onload", function () { 6 if (parseInt(external.getIsHighContrast())) { 7 document.body.className += " high-contrast"; 8 } 9 10 document.body.style.fontFamily = external.getFontName() + ", sans-serif"; 11 12 // Disallow dragging of the "background" image. 13 document.getElementById("background").attachEvent("ondragstart", function () { 14 return false; 15 }); 16 });