1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 05:35:55 +00:00

workaround for xmlhttp permission denied in viewfeed footer (closes #73)

This commit is contained in:
Andrew Dolgov
2006-06-18 16:46:32 +01:00
parent 752bd59812
commit 5516095502
2 changed files with 12 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ function browser_has_opacity() {
navigator.userAgent.match("Opera") != null;
}
function exception_error(location, e) {
function exception_error(location, e, silent) {
var msg;
if (e.fileName) {
@@ -23,7 +23,9 @@ function exception_error(location, e) {
debug("<b>EXCEPTION: " + msg + "</b>");
alert(msg);
if (!silent) {
alert(msg);
}
}
function disableHotkeys() {