X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/b0773e2054ab6bc6305142fdd28799e0f41616c9..78644811ca0c6042212788dc67add42bc41fb74c:/project/static/js/messages.js diff --git a/project/static/js/messages.js b/project/static/js/messages.js deleted file mode 100644 index c64aa5bd..00000000 --- a/project/static/js/messages.js +++ /dev/null @@ -1,34 +0,0 @@ -/*global Editor*/ -Editor.MessageCenter = Editor.Object.extend({ - init: function() { - this.messages = []; - this.flashMessages = []; - this.firstFlashMessage = null; - }, - - addMessage: function(type, text, flash) { - this.messages.push({type: type, text: text}); - if (flash) { - this.flashMessages.push({type: type, text: flash}); - if (this.flashMessages.length == 1) { - this.set('firstFlashMessage', this.flashMessages[0]); - setTimeout(this.changeFlashMessage.bind(this), 1000 * 10); - } - } - }, - - changeFlashMessage: function() { - this.flashMessages.splice(0, 1); - if (this.flashMessages.length > 0) { - this.set('firstFlashMessage', this.flashMessages[0]); - setTimeout(this.changeFlashMessage.bind(this), 1000 * 10); - } else { - this.set('firstFlashMessage', null); - } - } - -}); - - -var messageCenter = new Editor.MessageCenter(); -