X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/cf92775489840f1dc7b2c65fae6b968beadbad7e..808306985627fd87f75a1b61fbd2d2b0fa61b186:/modules/indicator/indicator.js?ds=inline
diff --git a/modules/indicator/indicator.js b/modules/indicator/indicator.js
index 0e9bcdc..d98fe04 100644
--- a/modules/indicator/indicator.js
+++ b/modules/indicator/indicator.js
@@ -1,32 +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('' + msg + '').show();
- },
- clearMessage: function() {
- view.dom.empty();
- }
-
- }
-
-}
-
-});
+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(report) {
+ view.dom.empty();
+ if(report && report.message) {
+ view.dom.html('' + report.message + '').show().fadeOut(4000);
+ }
+ }
+
+ };
+
+};
+
+});