X-Git-Url: https://git.donarmstrong.com/?p=dactyl.git;a=blobdiff_plain;f=common%2Fmodules%2Fconfig.jsm;h=9e5b7c0c59ea3526d4c79afcd5c0f769de8d2eee;hp=305880d3cbd5bdae938f6ad985ca10696892f56a;hb=3d837eb266a3a01d424192aa4ec1a167366178c5;hpb=d8a3bcebff36df7b128b36e0b57b715479e155a0 diff --git a/common/modules/config.jsm b/common/modules/config.jsm index 305880d..9e5b7c0 100644 --- a/common/modules/config.jsm +++ b/common/modules/config.jsm @@ -37,7 +37,7 @@ AboutHandler.prototype = { return channel; }, - getURIFlags: function (uri) Ci.nsIAboutModule.ALLOW_SCRIPT, + getURIFlags: function (uri) Ci.nsIAboutModule.ALLOW_SCRIPT }; var ConfigBase = Class("ConfigBase", { /** @@ -415,7 +415,7 @@ var ConfigBase = Class("ConfigBase", { "list.href": Class.Memoize(function () "http://groups.google.com/group/" + config.name), "hg.latest": Class.Memoize(function () this.code + "source/browse/"), // XXX - "irc": "irc://irc.oftc.net/#pentadactyl", + "irc": "irc://irc.oftc.net/#pentadactyl" }), dtdExtra: { @@ -494,7 +494,7 @@ var ConfigBase = Class("ConfigBase", { */ get outputHeight() this.browser.mPanelContainer.boxObject.height, - tabStrip: Class.Memoize(function () document.getElementById("TabsToolbar") || this.tabbrowser.mTabContainer), + tabStrip: Class.Memoize(function () document.getElementById("TabsToolbar") || this.tabbrowser.mTabContainer) }), /** @@ -568,12 +568,6 @@ var ConfigBase = Class("ConfigBase", { sidebars: {}, - /** - * @property {string} The leaf name of any temp files created by - * {@link io.createTempFile}. - */ - get tempFile() this.name + ".txt", - /** * @constant * @property {string} The default highlighting rules. @@ -620,4 +614,4 @@ endModule(); // catch(e){ if (typeof e === "string") e = Error(e); dump(e.fileName+":"+e.lineNumber+": "+e+"\n" + e.stack); } -// vim: set fdm=marker sw=4 sts=4 et ft=javascript: +// vim: set fdm=marker sw=4 sts=4 ts=8 et ft=javascript: