bug 12599

Fix refresh event being called on a nonexistent widget, giving error

status 12599: fixed resolved
This commit is contained in:
Brian Federle 2011-12-16 11:40:46 -08:00
parent 1dca4aa3bc
commit 3f75802404
1 changed files with 3 additions and 1 deletions

View File

@ -45,7 +45,9 @@
};
$(window).bind('cloudStack.fullRefresh cloudStack.updateResources', function() {
getData();
if ($dashboard.is(':visible')) {
getData();
}
});
return function(args) {