mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-18 16:45:31 +01:00
d237bc419d
Built from https://develop.svn.wordpress.org/trunk@29021 git-svn-id: http://core.svn.wordpress.org/trunk@28809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
44 lines
958 B
JavaScript
44 lines
958 B
JavaScript
(function($){
|
|
if ( $('body').hasClass('language-chooser') === false ) {
|
|
return;
|
|
}
|
|
|
|
var mouseDown = 0,
|
|
$fieldset = $('fieldset');
|
|
|
|
// simple way to check if mousebutton is depressed while accounting for multiple mouse buttons being used independently
|
|
document.body.onmousedown = function() {
|
|
++mouseDown;
|
|
};
|
|
document.body.onmouseup = function() {
|
|
--mouseDown;
|
|
};
|
|
|
|
/*
|
|
we can't rely upon the focusout event
|
|
since clicking on a label triggers it
|
|
*/
|
|
function maybeRemoveFieldsetFocus(){
|
|
if (mouseDown) {
|
|
setTimeout( maybeRemoveFieldsetFocus, 50);
|
|
return;
|
|
}
|
|
if ( $(':focus').hasClass('language-chooser-input') !== true ) {
|
|
$fieldset.removeClass('focus');
|
|
}
|
|
}
|
|
|
|
$fieldset.focusin( function() {
|
|
$(this).addClass('focus');
|
|
});
|
|
|
|
$fieldset.focusout( function() {
|
|
setTimeout( maybeRemoveFieldsetFocus, 50);
|
|
});
|
|
|
|
$('form').submit(function(){
|
|
$(this).find('.step .spinner').css('visibility','visible');
|
|
});
|
|
|
|
})(jQuery);
|