aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/bzpage.js9
-rw-r--r--lib/util.js7
2 files changed, 6 insertions, 10 deletions
diff --git a/lib/bzpage.js b/lib/bzpage.js
index 608e21e..635ec7d 100644
--- a/lib/bzpage.js
+++ b/lib/bzpage.js
@@ -142,15 +142,6 @@ var BZPage = function BZPage(win, config) {
};
/**
- * Get the ID of the bug.
- *
- * @return string
- */
-BZPage.prototype.getBugId = function getBugId () {
- return util.getBugNo(this.doc.location.href);
-};
-
-/**
* In case URL contains alias, not the real bug number, get the real bug no
* from the XML representation. Sets correct value to this.bugNo.
*/
diff --git a/lib/util.js b/lib/util.js
index 18a3c1b..0b1a79e 100644
--- a/lib/util.js
+++ b/lib/util.js
@@ -61,7 +61,12 @@ var getParamsFromURL = exports.getParamsFromURL = function getParamsFromURL (url
};
/**
- * FIXME this should go to bzpage.js ... no reason to keep it here
+ * Get a bug no from URL ... fails with aliases
+ * It should theoretically belong to bzpage.js, but we don't have
+ * unit tests there yet, so keeping here.
+ *
+ * @param url String with URL to be analyzed
+ * @return String with the bug ID (hopefully number, but not for aliases)
*/
exports.getBugNo = function getBugNo(url) {
var params = getParamsFromURL(url);