Refactoring: cleaning directories structure
[fnpeditor.git] / fnpjs / vbox.js
diff --git a/fnpjs/vbox.js b/fnpjs/vbox.js
deleted file mode 100644 (file)
index dfb5a9f..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-define(['libs/jquery', './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