X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/0214643f72c6aaa8e85eaba2ad27f2ca03ca6401..8c9d3b6afa002ad4db684dadcf8a50ca27f8701d:/fnpjs/vbox.js?ds=sidebyside

diff --git a/fnpjs/vbox.js b/fnpjs/vbox.js
index a7a5a67..569bf16 100644
--- a/fnpjs/vbox.js
+++ b/fnpjs/vbox.js
@@ -1,13 +1,13 @@
-define(['libs/jquery-1.9.1.min', './layout'], function($, layout) {
-    
-    var VBox = function() {};
-    
-    VBox.prototype = new layout.Layout('<div class="fnpjs-vbox"></div>');
-    VBox.prototype.appendView = function(view) {
-        var item = $('<div>').addClass('fnpjs-vbox-item').append(view);
-        this.dom.append(item);
-    }
-    
-    return {VBox: VBox};
-    
+define(['libs/jquery-1.9.1.min', './layout'], function($, layout) {
+    
+    var VBox = function() {};
+    
+    VBox.prototype = new layout.Layout('<div class="fnpjs-vbox"></div>');
+    VBox.prototype.appendView = function(view) {
+        var item = $('<div>').addClass('fnpjs-vbox-item').append(view);
+        this.dom.append(item);
+    };
+    
+    return {VBox: VBox};
+    
 });
\ No newline at end of file