1
0
mirror of https://github.com/lxsang/ant-http synced 2024-07-26 01:33:57 +02:00
ant-http/build/htdocs/scripts/rcar.js
2015-10-22 13:07:52 +02:00

35 lines
748 B
JavaScript

// system config
var config = {
layout:{
name: 'layout',
panels: [
{
type: 'top',
size: 29,
style: 'padding: 0px;',
content: '',
title: 'RCAR HTTP Server Manager'
},
{
type: 'left',
size: 160,
style: 'padding: 0px;',
content: 'left'
},
{
type: 'main',
style: 'padding: 0px;',
content: 'main'
}
]
}
}
// init the main layout
$(function () {
$('#layout').w2layout(config.layout);
w2ui.layout.content('left', w2ui.sidebar);
w2ui.layout.content('main', w2ui.pluginsgrid);
});