diff options
Diffstat (limited to 'lib/bzpage.js')
-rw-r--r-- | lib/bzpage.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/bzpage.js b/lib/bzpage.js index d9d679d..3ac61d6 100644 --- a/lib/bzpage.js +++ b/lib/bzpage.js @@ -11,8 +11,8 @@ var Color = require("color").Color; var TriagedDistro = 13; var NumberOfFrames = 7; var bugURL = "https://bugzilla.redhat.com/show_bug.cgi?id="; -var BSTPrefNS = "bugzilla-triage.setting."; -exports.BSTPrefNS = BSTPrefNS; +var BTSPrefNS = "bugzilla-triage.setting."; +exports.BTSPrefNS = BTSPrefNS; // ==================================================================================== // BZPage's methods @@ -66,7 +66,7 @@ var BZPage = function BZPage(win, config) { this.doc.getElementById("configurationButton").addEventListener( "click", function(evt) { - var prfNm = BSTPrefNS+"JSONURL"; + var prfNm = BTSPrefNS+"JSONURL"; var url = preferences.get(prfNm,""); var reply = that.win.prompt("New location of JSON configuration file",url); @@ -680,7 +680,7 @@ BZPage.prototype.getAttachments = function getAttachments () { * @return String with the password */ BZPage.prototype.getPassword = function getPassword () { - var prefName = BSTPrefNS+"BZpassword"; + var prefName = BTSPrefNS+"BZpassword"; if (preferences.isSet(prefName)) { return preferences.get(prefName,undefined); } else { |