2009-11-13 04:00:12 +00:00
|
|
|
/*!
|
2012-07-04 13:08:08 +00:00
|
|
|
* jQuery UI Core @VERSION
|
|
|
|
* http://jqueryui.com
|
2008-06-04 02:34:33 +00:00
|
|
|
*
|
2013-01-10 13:52:20 +00:00
|
|
|
* Copyright 2013 jQuery Foundation and other contributors
|
2012-08-09 14:13:24 +00:00
|
|
|
* Released under the MIT license.
|
2010-07-09 13:01:04 +00:00
|
|
|
* http://jquery.org/license
|
2008-06-04 02:34:33 +00:00
|
|
|
*
|
2012-09-29 20:32:52 +00:00
|
|
|
* http://api.jqueryui.com/category/ui-core/
|
2008-06-04 02:34:33 +00:00
|
|
|
*/
|
2010-07-13 13:57:58 +00:00
|
|
|
(function( $, undefined ) {
|
2010-05-20 00:33:23 +00:00
|
|
|
|
2012-05-30 01:55:43 +00:00
|
|
|
var uuid = 0,
|
|
|
|
runiqueId = /^ui-id-\d+$/;
|
|
|
|
|
2013-03-08 15:23:25 +00:00
|
|
|
// $.ui might exist from components with no dependencies, e.g., $.ui.position
|
2010-05-20 00:33:23 +00:00
|
|
|
$.ui = $.ui || {};
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2010-07-22 23:26:37 +00:00
|
|
|
$.extend( $.ui, {
|
2008-11-03 14:23:13 +00:00
|
|
|
version: "@VERSION",
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-12-14 06:11:37 +00:00
|
|
|
keyCode: {
|
|
|
|
BACKSPACE: 8,
|
|
|
|
COMMA: 188,
|
|
|
|
DELETE: 46,
|
|
|
|
DOWN: 40,
|
|
|
|
END: 35,
|
|
|
|
ENTER: 13,
|
|
|
|
ESCAPE: 27,
|
|
|
|
HOME: 36,
|
|
|
|
LEFT: 37,
|
|
|
|
NUMPAD_ADD: 107,
|
|
|
|
NUMPAD_DECIMAL: 110,
|
|
|
|
NUMPAD_DIVIDE: 111,
|
|
|
|
NUMPAD_ENTER: 108,
|
|
|
|
NUMPAD_MULTIPLY: 106,
|
|
|
|
NUMPAD_SUBTRACT: 109,
|
|
|
|
PAGE_DOWN: 34,
|
|
|
|
PAGE_UP: 33,
|
|
|
|
PERIOD: 190,
|
|
|
|
RIGHT: 39,
|
|
|
|
SPACE: 32,
|
|
|
|
TAB: 9,
|
2012-02-12 17:29:16 +00:00
|
|
|
UP: 38
|
2008-11-03 14:23:13 +00:00
|
|
|
}
|
2010-05-20 00:33:23 +00:00
|
|
|
});
|
2008-11-03 14:23:13 +00:00
|
|
|
|
2010-09-07 13:28:22 +00:00
|
|
|
// plugins
|
2008-09-22 20:52:48 +00:00
|
|
|
$.fn.extend({
|
2013-03-08 15:23:25 +00:00
|
|
|
focus: (function( orig ) {
|
|
|
|
return function( delay, fn ) {
|
|
|
|
return typeof delay === "number" ?
|
|
|
|
this.each(function() {
|
|
|
|
var elem = this;
|
|
|
|
setTimeout(function() {
|
|
|
|
$( elem ).focus();
|
|
|
|
if ( fn ) {
|
|
|
|
fn.call( elem );
|
|
|
|
}
|
|
|
|
}, delay );
|
|
|
|
}) :
|
|
|
|
orig.apply( this, arguments );
|
|
|
|
};
|
|
|
|
})( $.fn.focus ),
|
2010-07-22 23:26:37 +00:00
|
|
|
|
2008-11-10 14:32:25 +00:00
|
|
|
scrollParent: function() {
|
2008-11-23 17:42:24 +00:00
|
|
|
var scrollParent;
|
2012-12-25 17:01:09 +00:00
|
|
|
if (($.ui.ie && (/(static|relative)/).test(this.css("position"))) || (/absolute/).test(this.css("position"))) {
|
2008-11-23 17:42:24 +00:00
|
|
|
scrollParent = this.parents().filter(function() {
|
2012-12-25 17:01:09 +00:00
|
|
|
return (/(relative|absolute|fixed)/).test($.css(this,"position")) && (/(auto|scroll)/).test($.css(this,"overflow")+$.css(this,"overflow-y")+$.css(this,"overflow-x"));
|
2008-11-23 17:42:24 +00:00
|
|
|
}).eq(0);
|
|
|
|
} else {
|
|
|
|
scrollParent = this.parents().filter(function() {
|
2012-12-25 17:01:09 +00:00
|
|
|
return (/(auto|scroll)/).test($.css(this,"overflow")+$.css(this,"overflow-y")+$.css(this,"overflow-x"));
|
2008-11-23 17:42:24 +00:00
|
|
|
}).eq(0);
|
|
|
|
}
|
2008-11-28 15:43:32 +00:00
|
|
|
|
2012-12-25 17:01:09 +00:00
|
|
|
return (/fixed/).test(this.css("position")) || !scrollParent.length ? $(document) : scrollParent;
|
2009-08-05 13:30:55 +00:00
|
|
|
},
|
|
|
|
|
2012-05-30 01:55:43 +00:00
|
|
|
uniqueId: function() {
|
|
|
|
return this.each(function() {
|
|
|
|
if ( !this.id ) {
|
|
|
|
this.id = "ui-id-" + (++uuid);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
removeUniqueId: function() {
|
|
|
|
return this.each(function() {
|
|
|
|
if ( runiqueId.test( this.id ) ) {
|
|
|
|
$( this ).removeAttr( "id" );
|
|
|
|
}
|
|
|
|
});
|
2010-08-27 16:00:59 +00:00
|
|
|
}
|
2010-09-01 13:49:18 +00:00
|
|
|
});
|
2010-08-27 16:00:59 +00:00
|
|
|
|
2010-09-07 13:28:22 +00:00
|
|
|
// selectors
|
2011-04-15 14:51:56 +00:00
|
|
|
function focusable( element, isTabIndexNotNaN ) {
|
2012-04-02 23:12:21 +00:00
|
|
|
var map, mapName, img,
|
|
|
|
nodeName = element.nodeName.toLowerCase();
|
2011-04-15 14:51:56 +00:00
|
|
|
if ( "area" === nodeName ) {
|
2012-04-02 23:12:21 +00:00
|
|
|
map = element.parentNode;
|
|
|
|
mapName = map.name;
|
2011-04-15 14:51:56 +00:00
|
|
|
if ( !element.href || !mapName || map.nodeName.toLowerCase() !== "map" ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
img = $( "img[usemap=#" + mapName + "]" )[0];
|
|
|
|
return !!img && visible( img );
|
|
|
|
}
|
2012-04-02 19:55:50 +00:00
|
|
|
return ( /input|select|textarea|button|object/.test( nodeName ) ?
|
|
|
|
!element.disabled :
|
2012-04-02 23:12:21 +00:00
|
|
|
"a" === nodeName ?
|
2012-04-02 19:55:50 +00:00
|
|
|
element.href || isTabIndexNotNaN :
|
|
|
|
isTabIndexNotNaN) &&
|
2011-04-15 14:51:56 +00:00
|
|
|
// the element and all of its ancestors must be visible
|
2012-04-02 19:55:50 +00:00
|
|
|
visible( element );
|
2011-04-15 14:51:56 +00:00
|
|
|
}
|
|
|
|
|
2010-07-22 14:33:42 +00:00
|
|
|
function visible( element ) {
|
2012-10-23 19:12:54 +00:00
|
|
|
return $.expr.filters.visible( element ) &&
|
2012-12-14 16:13:46 +00:00
|
|
|
!$( element ).parents().addBack().filter(function() {
|
2012-10-23 19:12:54 +00:00
|
|
|
return $.css( this, "visibility" ) === "hidden";
|
|
|
|
}).length;
|
2010-07-22 14:33:42 +00:00
|
|
|
}
|
|
|
|
|
2010-07-22 23:26:37 +00:00
|
|
|
$.extend( $.expr[ ":" ], {
|
2012-07-07 18:28:52 +00:00
|
|
|
data: $.expr.createPseudo ?
|
|
|
|
$.expr.createPseudo(function( dataName ) {
|
|
|
|
return function( elem ) {
|
|
|
|
return !!$.data( elem, dataName );
|
|
|
|
};
|
|
|
|
}) :
|
|
|
|
// support: jQuery <1.8
|
|
|
|
function( elem, i, match ) {
|
|
|
|
return !!$.data( elem, match[ 3 ] );
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2010-07-22 23:26:37 +00:00
|
|
|
focusable: function( element ) {
|
2011-04-15 14:51:56 +00:00
|
|
|
return focusable( element, !isNaN( $.attr( element, "tabindex" ) ) );
|
2009-01-21 03:25:02 +00:00
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2010-07-22 23:26:37 +00:00
|
|
|
tabbable: function( element ) {
|
2011-04-15 14:51:56 +00:00
|
|
|
var tabIndex = $.attr( element, "tabindex" ),
|
|
|
|
isTabIndexNaN = isNaN( tabIndex );
|
|
|
|
return ( isTabIndexNaN || tabIndex >= 0 ) && focusable( element, !isTabIndexNaN );
|
2008-11-03 14:23:13 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-11-05 20:24:45 +00:00
|
|
|
// support: jQuery <1.8
|
|
|
|
if ( !$( "<a>" ).outerWidth( 1 ).jquery ) {
|
|
|
|
$.each( [ "Width", "Height" ], function( i, name ) {
|
|
|
|
var side = name === "Width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ],
|
|
|
|
type = name.toLowerCase(),
|
|
|
|
orig = {
|
|
|
|
innerWidth: $.fn.innerWidth,
|
|
|
|
innerHeight: $.fn.innerHeight,
|
|
|
|
outerWidth: $.fn.outerWidth,
|
|
|
|
outerHeight: $.fn.outerHeight
|
|
|
|
};
|
|
|
|
|
|
|
|
function reduce( elem, size, border, margin ) {
|
|
|
|
$.each( side, function() {
|
|
|
|
size -= parseFloat( $.css( elem, "padding" + this ) ) || 0;
|
|
|
|
if ( border ) {
|
|
|
|
size -= parseFloat( $.css( elem, "border" + this + "Width" ) ) || 0;
|
|
|
|
}
|
|
|
|
if ( margin ) {
|
|
|
|
size -= parseFloat( $.css( elem, "margin" + this ) ) || 0;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
$.fn[ "inner" + name ] = function( size ) {
|
|
|
|
if ( size === undefined ) {
|
|
|
|
return orig[ "inner" + name ].call( this );
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.each(function() {
|
|
|
|
$( this ).css( type, reduce( this, size ) + "px" );
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$.fn[ "outer" + name] = function( size, margin ) {
|
|
|
|
if ( typeof size !== "number" ) {
|
|
|
|
return orig[ "outer" + name ].call( this, size );
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.each(function() {
|
|
|
|
$( this).css( type, reduce( this, size, true, margin ) + "px" );
|
|
|
|
});
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-12-14 16:13:46 +00:00
|
|
|
// support: jQuery <1.8
|
|
|
|
if ( !$.fn.addBack ) {
|
|
|
|
$.fn.addBack = function( selector ) {
|
|
|
|
return this.add( selector == null ?
|
|
|
|
this.prevObject : this.prevObject.filter( selector )
|
|
|
|
);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-11-05 20:38:31 +00:00
|
|
|
// support: jQuery 1.6.1, 1.6.2 (http://bugs.jquery.com/ticket/9413)
|
|
|
|
if ( $( "<a>" ).data( "a-b", "a" ).removeData( "a-b" ).data( "a-b" ) ) {
|
|
|
|
$.fn.removeData = (function( removeData ) {
|
|
|
|
return function( key ) {
|
|
|
|
if ( arguments.length ) {
|
|
|
|
return removeData.call( this, $.camelCase( key ) );
|
|
|
|
} else {
|
|
|
|
return removeData.call( this );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
})( $.fn.removeData );
|
|
|
|
}
|
|
|
|
|
2010-08-27 15:52:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-09-07 13:28:22 +00:00
|
|
|
// deprecated
|
2012-11-05 16:28:04 +00:00
|
|
|
$.ui.ie = !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() );
|
2012-10-10 15:45:48 +00:00
|
|
|
|
2012-12-12 16:22:08 +00:00
|
|
|
$.support.selectstart = "onselectstart" in document.createElement( "div" );
|
2012-08-23 11:30:29 +00:00
|
|
|
$.fn.extend({
|
|
|
|
disableSelection: function() {
|
|
|
|
return this.bind( ( $.support.selectstart ? "selectstart" : "mousedown" ) +
|
|
|
|
".ui-disableSelection", function( event ) {
|
|
|
|
event.preventDefault();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
enableSelection: function() {
|
|
|
|
return this.unbind( ".ui-disableSelection" );
|
2013-03-15 11:01:24 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
zIndex: function( zIndex ) {
|
|
|
|
if ( zIndex !== undefined ) {
|
|
|
|
return this.css( "zIndex", zIndex );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( this.length ) {
|
|
|
|
var elem = $( this[ 0 ] ), position, value;
|
|
|
|
while ( elem.length && elem[ 0 ] !== document ) {
|
|
|
|
// Ignore z-index if position is set to a value where z-index is ignored by the browser
|
|
|
|
// This makes behavior of this function consistent across browsers
|
|
|
|
// WebKit always returns auto if the element is positioned
|
|
|
|
position = elem.css( "position" );
|
|
|
|
if ( position === "absolute" || position === "relative" || position === "fixed" ) {
|
|
|
|
// IE returns 0 when zIndex is not specified
|
|
|
|
// other browsers return a string
|
|
|
|
// we ignore the case of nested elements with an explicit value of 0
|
|
|
|
// <div style="z-index: -10;"><div style="z-index: 0;"></div></div>
|
|
|
|
value = parseInt( elem.css( "zIndex" ), 10 );
|
|
|
|
if ( !isNaN( value ) && value !== 0 ) {
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elem = elem.parent();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2012-08-23 11:30:29 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-03-27 13:35:17 +00:00
|
|
|
// $.ui.plugin is deprecated. Use $.widget() extensions instead.
|
|
|
|
$.ui.plugin = {
|
|
|
|
add: function( module, option, set ) {
|
|
|
|
var i,
|
|
|
|
proto = $.ui[ module ].prototype;
|
|
|
|
for ( i in set ) {
|
|
|
|
proto.plugins[ i ] = proto.plugins[ i ] || [];
|
|
|
|
proto.plugins[ i ].push( [ option, set[ i ] ] );
|
2010-08-27 15:52:03 +00:00
|
|
|
}
|
|
|
|
},
|
2013-03-27 13:35:17 +00:00
|
|
|
call: function( instance, name, args ) {
|
|
|
|
var i,
|
|
|
|
set = instance.plugins[ name ];
|
|
|
|
if ( !set || !instance.element[ 0 ].parentNode || instance.element[ 0 ].parentNode.nodeType === 11 ) {
|
|
|
|
return;
|
2010-08-27 15:52:03 +00:00
|
|
|
}
|
2012-08-23 11:35:40 +00:00
|
|
|
|
2013-03-27 13:35:17 +00:00
|
|
|
for ( i = 0; i < set.length; i++ ) {
|
|
|
|
if ( instance.options[ set[ i ][ 0 ] ] ) {
|
|
|
|
set[ i ][ 1 ].apply( instance.element, args );
|
|
|
|
}
|
2010-08-27 15:52:03 +00:00
|
|
|
}
|
|
|
|
}
|
2013-03-27 13:35:17 +00:00
|
|
|
};
|
2010-08-27 15:52:03 +00:00
|
|
|
|
2010-07-22 23:26:37 +00:00
|
|
|
})( jQuery );
|