Abrowser: corrections to 3-row privacy block setup

This commit is contained in:
Ruben Rodriguez 2018-05-13 19:30:57 -04:00
parent a1d3213dd2
commit 8249d604de
2 changed files with 7 additions and 3 deletions

View file

@ -215,11 +215,15 @@ this._bundle = Services.strings.createBundle("chrome://onboarding/locale/onboard
key = this.keylist[key]; key = this.keylist[key];
settingsblock.appendChild(this.newcheckbox("key", key.type, key.name, key.label, key.description, key.defaultvalue, key.onvalue, key.offvalue, clear)); settingsblock.appendChild(this.newcheckbox("key", key.type, key.name, key.label, key.description, key.defaultvalue, key.onvalue, key.offvalue, clear));
} }
settingsblock.appendChild(this._window.document.createElement("div").style="clear:both"); let closer=this._window.document.createElement("div");
closer.style="clear:both";
settingsblock.appendChild(closer);
settingsblock.appendChild(this.newcheckbox("addon", null, "jid1-KtlZuoiikVfFew@jetpack", "GNU LibreJs", "Block nonfree <a href=\"https://www.gnu.org/software/librejs/\">JavaScript</a>. <span style=\"color:red\">(Experimental)</span>")); settingsblock.appendChild(this.newcheckbox("addon", null, "jid1-KtlZuoiikVfFew@jetpack", "GNU LibreJs", "Block nonfree <a href=\"https://www.gnu.org/software/librejs/\">JavaScript</a>. <span style=\"color:red\">(Experimental)</span>"));
settingsblock.appendChild(this.newcheckbox("addon", null, "https-everywhere-eff@eff.org", "HTTPS Everywhere", "Extension that encrypts your communications with many major websites, making your browsing more secure.")); settingsblock.appendChild(this.newcheckbox("addon", null, "https-everywhere-eff@eff.org", "HTTPS Everywhere", "Extension that encrypts your communications with many major websites, making your browsing more secure."));
settingsblock.appendChild(this.newcheckbox("addon", null, "uBlock0@raymondhill.net", "uBlock Origin", "Block ads and other intrusing trackers.")); settingsblock.appendChild(this.newcheckbox("addon", null, "uBlock0@raymondhill.net", "uBlock Origin", "Block ads and other intrusing trackers."));
settingsblock.appendChild(this._window.document.createElement("div").style="clear:both"); let closer2=this._window.document.createElement("div");
closer2.style="clear:both";
settingsblock.appendChild(closer2);
} }
_clearPrefObserver() { _clearPrefObserver() {

View file

@ -18,7 +18,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# #
VERSION=57 VERSION=58
. ./config . ./config