Output error

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

View File

@ -80,7 +80,9 @@ 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');
} }
if (window.__treestyletab__openLinkIn_extraParams)
delete window.__treestyletab__openLinkIn_extraParams; delete window.__treestyletab__openLinkIn_extraParams;
return result; return result;
}; };
@ -96,7 +98,9 @@ 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');
} }
if (window.__treestyletab__openLinkIn_extraParams)
delete window.__treestyletab__openLinkIn_extraParams; delete window.__treestyletab__openLinkIn_extraParams;
return result; return result;
}; };