Skip to content

Commit

Permalink
Fix AJAX favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
vrana committed Aug 12, 2011
1 parent 2b472a5 commit 8a06b35
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion adminer/static/functions.js
Expand Up @@ -332,7 +332,9 @@ function ajaxSend(url, data, popState, noscroll) {
return ajaxSend(redirect, '', popState);
}
onblur = function () { };
replaceFavicon(originalFavicon);
if (originalFavicon) {
replaceFavicon(originalFavicon);
}
if (!xmlhttp.status) {
setHtml('loader', '');
} else {
Expand Down

0 comments on commit 8a06b35

Please sign in to comment.