1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/mozapps/extensions/content/eula.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,21 @@ 1.4 +// -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- 1.5 + 1.6 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +"use strict"; 1.11 + 1.12 +function Startup() { 1.13 + var bundle = document.getElementById("extensionsStrings"); 1.14 + var addon = window.arguments[0].addon; 1.15 + 1.16 + document.documentElement.setAttribute("addontype", addon.type); 1.17 + 1.18 + if (addon.iconURL) 1.19 + document.getElementById("icon").src = addon.iconURL; 1.20 + 1.21 + var label = document.createTextNode(bundle.getFormattedString("eulaHeader", [addon.name])); 1.22 + document.getElementById("heading").appendChild(label); 1.23 + document.getElementById("eula").value = addon.eula; 1.24 +}