Notification: remove useless notification system

This commit is contained in:
Simon Lehericey 2017-05-05 14:08:36 +02:00
parent 7a597a802c
commit 9d16c0365a
4 changed files with 0 additions and 26 deletions

View file

@ -1,23 +0,0 @@
//App.messages = App.cable.subscriptions.create('NotificationsChannel', {
// received: function (data) {
// if (window.location.href.indexOf('backoffice') !== -1) {
// $("#notification-alert").html(data['message']);
//
// slideIn_notification_alert();
// }
// }
//});
function slideIn_notification_alert (){
$("#notification-alert").animate({
right: '20px'
}, 250);
setTimeout(slideOut_notification_alert, 3500);
}
function slideOut_notification_alert (){
$("#notification-alert").animate({
right: '-250px'
}, 200);
}