Detail view, multi-group actions: Prevent refresh of all tabs

Prevent call to updateTabContent, which will switch the detail view
off the current tab on action complete.
This commit is contained in:
Brian Federle 2013-04-26 15:32:15 -07:00
parent 9db639c5ae
commit 6b1da42221
1 changed files with 5 additions and 1 deletions

View File

@ -199,7 +199,11 @@
$loading.remove();
if (!noRefresh && !viewArgs.compact) {
updateTabContent(args.data? args.data : args2.data);
if (isMultiple) {
$detailView.find('.refresh').click();
} else {
updateTabContent(args.data? args.data : args2.data);
}
}
}