diff options
Diffstat (limited to 'lib/libbugzilla.js')
-rw-r--r-- | lib/libbugzilla.js | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/libbugzilla.js b/lib/libbugzilla.js index c6f1adb..46356cc 100644 --- a/lib/libbugzilla.js +++ b/lib/libbugzilla.js @@ -238,17 +238,6 @@ exports.setClipboard = function setClipboard(stuff) { clipboard.set(stuff, "text"); }; -exports.getURL = function getURL(url, callback) { - Request({ - url: url, - onComplete: function(response) { - if (response.status == 200) { - callback(response.text); - } - } - }).get(); -}; - exports.openStringInNewPanel = function openStringInNewPanel(inHTMLStr) { openURLInNewPanel("data:text/html;charset=utf-8," + inHTMLStr); |