1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
853 B

/*jslint laxbreak:true */
/*jslint laxcomma:true */
/*jslint loopfunc:true */
/*jslint strict:true */
/*jslint browser:true */
/*jslint devel:true */
define([
"jquery"
, "backbone"
, "jquery-layout"
]
, function ($, Backbone) {
"use strict";
return Backbone.View.extend({
el: $("body")
, layout: null
, layoutItems: null
, events: {
}
, initialize: function() {
//_.bindAll(this);
var that = this;
that.layout = that.$el.layout({
//applyDefaultStyles: true
defaults: {
closable: false
, resizable: false
, slidable: false
, spacing_open: 0
, spacing_closed: 0
}
, north: {
size: 52
}
, west: {
size: 150
, closable: true
}
, center: {
resizable: false
}
, south: {
size: 30
}
});
}
});
});