Output error

This commit is contained in:
YUKI Hiroshi 2016-01-21 20:57:55 +09:00
parent 3f59a46efe
commit de50d19993

View File

@ -80,8 +80,10 @@ var TreeStyleTabWindowHelper = {
result = window.__treestyletab__openLinkIn.apply(this, [aUrl, aWhere, aParams].concat(aArgs)); result = window.__treestyletab__openLinkIn.apply(this, [aUrl, aWhere, aParams].concat(aArgs));
} }
catch(e) { catch(e) {
dump(e+'\n');
} }
delete window.__treestyletab__openLinkIn_extraParams; if (window.__treestyletab__openLinkIn_extraParams)
delete window.__treestyletab__openLinkIn_extraParams;
return result; return result;
}; };
@ -96,8 +98,10 @@ var TreeStyleTabWindowHelper = {
result = window.__treestyletab__handleLinkClick.apply(this, [aEvent, aHref, aLinkNode].concat(aArgs)); result = window.__treestyletab__handleLinkClick.apply(this, [aEvent, aHref, aLinkNode].concat(aArgs));
} }
catch(e) { catch(e) {
dump(e+'\n');
} }
delete window.__treestyletab__openLinkIn_extraParams; if (window.__treestyletab__openLinkIn_extraParams)
delete window.__treestyletab__openLinkIn_extraParams;
return result; return result;
}; };