Skip to content

Commit

Permalink
Fix a query.abord() on a null value on Locks and Process pages when s…
Browse files Browse the repository at this point in the history
…toping refresh before the first ajax request
  • Loading branch information
Alexey Baturin authored and ioguix committed Aug 6, 2010
1 parent b1b86a8 commit 8740dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/database.js
Expand Up @@ -46,7 +46,7 @@ $(document).ready(function() {
$(errmsg).hide();
$(loading).hide();
window.clearInterval(timeid);
query.abort();
if (query) query.abort();
controlLink.html('<img src="'+ Database.str_start.icon +'" alt="" />&nbsp;'
+ Database.str_start.text
);
Expand Down

0 comments on commit 8740dd5

Please sign in to comment.