diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-02-20 00:07:17 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-02-20 00:07:17 +0100 |
commit | 71df561fef80abf523548727d77dba2ef8ab7b93 (patch) | |
tree | 4973444f34c064718c0b1a1024c52005d4d225cb /lib | |
parent | 66275e3a326dc771c04cb6fbfdee68f09b66ee6c (diff) | |
download | bugzilla-triage-71df561fef80abf523548727d77dba2ef8ab7b93.tar.gz |
Add ability to briefly look through Xorg.0.log
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libbugzilla.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libbugzilla.js b/lib/libbugzilla.js index d30a025..196dbbe 100644 --- a/lib/libbugzilla.js +++ b/lib/libbugzilla.js @@ -218,10 +218,10 @@ exports.getURL = function getURL(url, callback) { exports.openStringInNewPanel = function openStringInNewPanel(inHTMLStr) { openURLInNewPanel("data:text/html;charset=utf-8," + - dataUtils.base64Encode(inHTMLStr)); + inHTMLStr); }; -exports.openURLInNewPanel = function openURLInNewPanel(url) { +var openURLInNewPanel = exports.openURLInNewPanel = function openURLInNewPanel(url) { var panel = panelMod.Panel({ contentURL: url, width: 640, @@ -230,7 +230,7 @@ exports.openURLInNewPanel = function openURLInNewPanel(url) { panel.show(); }; -exports.openURLInNewTab = function openURLInNewTab(url) { +var openURLInNewTab = exports.openURLInNewTab = function openURLInNewTab(url) { tabs.open({ url: url, inBackground: true, |