Admin UI minor update. Layer open JS added.

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@11251 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2012-09-16 06:32:43 +00:00
parent b0e4c4a044
commit a2da611bdc
2 changed files with 6 additions and 6 deletions

View file

@ -6,17 +6,17 @@ jQuery(function($){
$('.x .skipNav>a').click(function(){
$($(this).attr('href')).attr('tabindex','0').css('outline','0').focus();
});
// Layer Toggle
// Content Toggle
$('.x [data-toggle^="#"]').click(function(){
$($(this).attr('data-toggle')).toggle();
return false;
});
// Open Layer
// Content Open
$('.x [data-open^="#"]').click(function(){
$($(this).attr('data-open')).open();
return false;
});
// Close Layer
// Content Close
$('.x [data-close^="#"]').click(function(){
$($(this).attr('data-close')).hide();
return false;

View file

@ -6,17 +6,17 @@ jQuery(function($){
$('.x .skipNav>a').click(function(){
$($(this).attr('href')).attr('tabindex','0').css('outline','0').focus();
});
// Layer Toggle
// Content Toggle
$('.x [data-toggle^="#"]').click(function(){
$($(this).attr('data-toggle')).toggle();
return false;
});
// Open Layer
// Content Open
$('.x [data-open^="#"]').click(function(){
$($(this).attr('data-open')).open();
return false;
});
// Close Layer
// Content Close
$('.x [data-close^="#"]').click(function(){
$($(this).attr('data-close')).hide();
return false;