bug 12410

Bug was caused by a 'cloudStack.fullRefresh' event being triggered on
a non-existent edit widget, for a non-existent project. I changed the
widget to only refresh if the current instance is visible (i.e., most
likely the user still has active data for it)
This commit is contained in:
Brian Federle 2011-12-07 15:36:37 -08:00
parent 2ae4e50a9a
commit 103ede0793
1 changed files with 3 additions and 1 deletions

View File

@ -622,7 +622,9 @@
getData();
$(window).bind('cloudStack.fullRefresh', function(event) {
getData();
if ($multi.is(':visible')) {
getData();
}
});
$multi.bind('change select', function() {