X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/103c278d4f2eae78854cbfcfc0a25f2a0b1c4c47..97b4fb7216407c6623f0e1307bae4b98b0c64b75:/fnpjs/layout.js?ds=inline

diff --git a/fnpjs/layout.js b/fnpjs/layout.js
index 5fe61cc..05252fb 100644
--- a/fnpjs/layout.js
+++ b/fnpjs/layout.js
@@ -1,37 +1,37 @@
-define(['libs/jquery-1.9.1.min', 'libs/underscore-min'], function($ ,_) {
-    'use strict';
-      
-    var Layout = function(template) {
-        var layout = this;
-        this.dom = $(_.template(template)());
-        this.views = {};
-        
-        this.dom.onShow = function() {
-            _.values(layout.views).forEach(function(view) {
-                if(view.onShow)
-                    view.onShow();
-            });
-        };
-        this.dom.onHide = function() {
-            _.values(layout.views).forEach(function(view) {
-                if(view.onHide)
-                    view.onHide();
-            });
-        };
-        
-    };
-    
-    Layout.prototype.setView = function(place, view) {
-        this.dom.find('[fnpjs-place=' + place + ']').append(view);
-        this.views[place] = view;
-        if(this.dom.is(':visible') && view.onShow) {
-            view.onShow();
-        }
-    };
-    
-    Layout.prototype.getAsView = function() {
-        return this.dom
-    };
-    
-    return {Layout: Layout};
+define(['libs/jquery-1.9.1.min', 'libs/underscore-min'], function($ ,_) {
+    'use strict';
+      
+    var Layout = function(template) {
+        var layout = this;
+        this.dom = $(_.template(template)());
+        this.views = {};
+        
+        this.dom.onShow = function() {
+            _.values(layout.views).forEach(function(view) {
+                if(view.onShow)
+                    view.onShow();
+            });
+        };
+        this.dom.onHide = function() {
+            _.values(layout.views).forEach(function(view) {
+                if(view.onHide)
+                    view.onHide();
+            });
+        };
+        
+    };
+    
+    Layout.prototype.setView = function(place, view) {
+        this.dom.find('[fnpjs-place=' + place + ']').append(view);
+        this.views[place] = view;
+        if(this.dom.is(':visible') && view.onShow) {
+            view.onShow();
+        }
+    };
+    
+    Layout.prototype.getAsView = function() {
+        return this.dom;
+    };
+    
+    return {Layout: Layout};
 });
\ No newline at end of file