mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 15:19:57 +09:00
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:
parent
a6261c58d7
commit
240142d62e
4 changed files with 34 additions and 2 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
13
modules/admin/tpl/js/admin.min.js
vendored
13
modules/admin/tpl/js/admin.min.js
vendored
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue