Installation default layout change. (xe_official -> bootstrap.layout)

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12533 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2013-01-11 05:02:58 +00:00
parent 75fd366bd6
commit 860c7931f8
3 changed files with 9 additions and 5 deletions

View file

@ -32,6 +32,7 @@ input[type=radio]{margin:0}
.body.sub>.lnb{display:block;float:left;width:200px;position:relative;left:-220px;margin-right:-200px}
}
.content{outline:0}
.content:after{content:"";display:block;clear:both}
.footer{margin:15px 0}
.skip>a{height:1px;overflow:hidden;display:block;text-align:center;font-weight:bold;margin:-1px 0 0 0;color:#fff;text-decoration:none}
.skip>a:focus{height:auto;padding:8px 0;border-radius:0 0 4px 4px;background:#333}

View file

@ -6,6 +6,9 @@ jQuery(function($){
$('.skip>a').click(function(){
$($(this).attr('href')).attr('tabindex','0').focus();
});
// Login Error
$('#fo_login_widget .message').parent('.x_well').show();
// GNB
var $gnb = $('.gnb');

View file

@ -41,16 +41,16 @@ $oMenuAdminController->makeXmlFile($menu_srl);
// create Layout
//extra_vars init
$extra_vars->colorset = 'default';
$extra_vars->main_menu = $menu_srl;
$extra_vars->bottom_menu = $menu_srl;
$extra_vars->GNB = $menu_srl;
$extra_vars->LAYOUT_TYPE = 'MAIN_PAGE';
$extra_vars->VISUAL_USE = 'YES';
$extra_vars->menu_name_list = array();
$extra_vars->menu_name_list[$menu_srl] = 'welcome_menu';
$args->site_srl = 0;
$layout_srl = $args->layout_srl = getNextSequence();
$args->layout = 'xe_official';
$args->title = 'welcome_layout';
$args->layout = 'bootstrap.layout';
$args->title = 'bootstrap.layout';
$args->layout_type = 'P';
$oLayoutAdminController = &getAdminController('layout');