a7a5a678c23a91f7acf240266763b9a89298463e
[fnpeditor.git] / fnpjs / vbox.js
1 define(['libs/jquery-1.9.1.min', './layout'], function($, layout) {\r
2     \r
3     var VBox = function() {};\r
4     \r
5     VBox.prototype = new layout.Layout('<div class="fnpjs-vbox"></div>');\r
6     VBox.prototype.appendView = function(view) {\r
7         var item = $('<div>').addClass('fnpjs-vbox-item').append(view);\r
8         this.dom.append(item);\r
9     }\r
10     \r
11     return {VBox: VBox};\r
12     \r
13 });