workaround for xmlhttp permission denied in viewfeed footer (closes #73)
This commit is contained in:
parent
752bd59812
commit
5516095502
2 changed files with 12 additions and 3 deletions
|
@ -1248,7 +1248,14 @@
|
||||||
<script type=\"text/javascript\">
|
<script type=\"text/javascript\">
|
||||||
try {
|
try {
|
||||||
document.onkeydown = hotkey_handler;
|
document.onkeydown = hotkey_handler;
|
||||||
parent.update_all_counters(\"$feed\");
|
try {
|
||||||
|
parent.update_all_counters(\"$feed\");
|
||||||
|
} catch (e) {
|
||||||
|
// this is workaround against mysterious permission
|
||||||
|
// denied feature/bug of firefox (ticket #73)
|
||||||
|
// if call from this context failed - ignore silently
|
||||||
|
exception_error(\"viewfeed/footer1/counters\", e, true);
|
||||||
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
exception_error(\"viewfeed/footer1\", e);
|
exception_error(\"viewfeed/footer1\", e);
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@ function browser_has_opacity() {
|
||||||
navigator.userAgent.match("Opera") != null;
|
navigator.userAgent.match("Opera") != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
function exception_error(location, e) {
|
function exception_error(location, e, silent) {
|
||||||
var msg;
|
var msg;
|
||||||
|
|
||||||
if (e.fileName) {
|
if (e.fileName) {
|
||||||
|
@ -23,7 +23,9 @@ function exception_error(location, e) {
|
||||||
|
|
||||||
debug("<b>EXCEPTION: " + msg + "</b>");
|
debug("<b>EXCEPTION: " + msg + "</b>");
|
||||||
|
|
||||||
alert(msg);
|
if (!silent) {
|
||||||
|
alert(msg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function disableHotkeys() {
|
function disableHotkeys() {
|
||||||
|
|
Loading…
Reference in a new issue