Skip to content

Commit 39855a7

Browse files
committed
Merge pull request #208 from maeisabelle/192-RemovedAutomaticClosingOfNotification
192 - Removed automatic closing of notification
2 parents 8d74e59 + 000dadc commit 39855a7

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

quick-start/src/main/resources/static/app/directives/notificationDirective.js

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,7 @@
2121
messageType: '',
2222
message: ''
2323
};
24-
25-
$rootScope.$watch('notificationBar.show == true', function(newValue, oldValue) {
26-
if (newValue !== oldValue) {
27-
$timeout(function() {
28-
$rootScope.notificationBar.show = false;
29-
}, 5000);
30-
}
31-
});
32-
33-
24+
3425
}
3526
};
3627
}

0 commit comments

Comments
 (0)