Quickview: Fix action error handling not removing loading state

This commit is contained in:
Brian Federle 2014-08-12 15:20:32 -07:00
parent a1bee2cb61
commit cf8a00cbfd
1 changed files with 6 additions and 0 deletions

View File

@ -269,6 +269,12 @@
message: args
});
}
// Quickview: Remove loading state on list row
if (viewArgs && viewArgs.$listViewRow) {
viewArgs.$listViewRow.removeClass('loading')
.find('.loading').removeClass('loading');
}
$loading.remove();
}
}