X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/4a10da821d96b8e462cc9db5e74e2507445eee76..61143e615dfb903cd11c11539b7259cc4bc8b9fe:/modules/indicator/indicator.js

diff --git a/modules/indicator/indicator.js b/modules/indicator/indicator.js
index 007dcff..d98fe04 100644
--- a/modules/indicator/indicator.js
+++ b/modules/indicator/indicator.js
@@ -1,35 +1,35 @@
-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('<span>' + msg + '</span>').show();
-        },
-        clearMessage: function(report) {
-            view.dom.empty();
-            if(report && report.message) {
-                view.dom.html('<span class="success">' + report.message + '</span>').show().fadeOut(4000);
-            }
-        }
-        
-    };
-
-};
-
-});
+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('<span>' + msg + '</span>').show();
+        },
+        clearMessage: function(report) {
+            view.dom.empty();
+            if(report && report.message) {
+                view.dom.html('<span class="success">' + report.message + '</span>').show().fadeOut(4000);
+            }
+        }
+        
+    };
+
+};
+
+});