Issue 2609 fixed. GNB > language selection UI.

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@11813 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2012-10-22 02:53:30 +00:00
parent a6261c58d7
commit 240142d62e
4 changed files with 34 additions and 2 deletions

View file

@ -136,6 +136,19 @@ jQuery(function($){
$xBody.addClass('wide');
reflow();
});
// Default Language Selection
$('.x #lang')
.mouseleave(function(){
$(this).hide();
})
.focusout(function(){
var $this = $(this);
setTimeout(function(){
if(!$this.find('a:focus').length){
$this.mouseleave();
}
}, 0);
});
// Check All
$('.x th>input[type="checkbox"]')
.change(function() {

View file

@ -136,6 +136,19 @@ jQuery(function($){
$xBody.addClass('wide');
reflow();
});
// Default Language Selection
$('.x #lang')
.mouseleave(function(){
$(this).hide();
})
.focusout(function(){
var $this = $(this);
setTimeout(function(){
if(!$this.find('a:focus').length){
$this.mouseleave();
}
}, 0);
});
// Check All
$('.x th>input[type="checkbox"]')
.change(function() {