Converting end of lines from crlf to lf
[fnpeditor.git] / fnpjs / vbox.js
index 84ac6db..569bf16 100644 (file)
@@ -1,13 +1,13 @@
-define(['libs/jquery-1.9.1.min', './layout'], function($, layout) {\r
-    \r
-    var VBox = function() {};\r
-    \r
-    VBox.prototype = new layout.Layout('<div class="fnpjs-vbox"></div>');\r
-    VBox.prototype.appendView = function(view) {\r
-        var item = $('<div>').addClass('fnpjs-vbox-item').append(view);\r
-        this.dom.append(item);\r
-    };\r
-    \r
-    return {VBox: VBox};\r
-    \r
+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