bug 12698

Fix detail view error handling for async actions

status 12698: resolved fixed
This commit is contained in:
bfederle 2011-12-22 11:04:10 -08:00
parent 483119ec0f
commit e348b25ad6
1 changed files with 5 additions and 4 deletions

View File

@ -109,7 +109,9 @@
{},
// Error
function(args) {}
function(args) {
$loading.remove();
}
);
}
});
@ -159,13 +161,12 @@
// Error
function(args) {
$loading.remove();
}
);
},
error: function(args) {
// if (args.message)
// cloudStack.dialog.notice({ message: args.message });
$loading.remove();
}
}
});