X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/cf92775489840f1dc7b2c65fae6b968beadbad7e..efe36f4f1b5df351eeb4d40a54c3900cf9a7079b:/modules/indicator/indicator.js?ds=inline diff --git a/modules/indicator/indicator.js b/modules/indicator/indicator.js deleted file mode 100644 index 0e9bcdc..0000000 --- a/modules/indicator/indicator.js +++ /dev/null @@ -1,32 +0,0 @@ -define([ -'libs/jquery-1.9.1.min', -'libs/underscore-min', -'libs/text!./template.html' -], function($, _, template) { - -'use strict'; - -return function(sandbox) { - - var view = { - dom: $(_.template(template)()), - setup: function() { - - } - } - - return { - start: function() { sandbox.publish('ready'); }, - getView: function() { return view.dom; }, - showMessage: function(msg) { - view.dom.html('' + msg + '').show(); - }, - clearMessage: function() { - view.dom.empty(); - } - - } - -} - -});