[#55,notify][xs]: correct clearNotifications to use .alert rather that .alert-messages.

This commit is contained in:
Rufus Pollock
2012-02-29 13:20:54 +00:00
parent ca89b8f916
commit 5c3781826a
3 changed files with 3 additions and 3 deletions

View File

@@ -324,7 +324,7 @@ my.notify = function(message, options) {
//
// Clear all existing notifications
my.clearNotifications = function() {
var $notifications = $('.data-explorer .alert-message');
var $notifications = $('.data-explorer .alert-messages .alert');
$notifications.remove();
}