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
|
|
|
*
|
2014-12-21 18:27:43 +00:00
|
|
|
* Copyright 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
|
|
|
*/
|
2013-07-12 16:40:48 +00:00
|
|
|
(function( factory ) {
|
|
|
|
if ( typeof define === "function" && define.amd ) {
|
|
|
|
|
|
|
|
// AMD. Register as an anonymous module.
|
|
|
|
define( [ "jquery" ], factory );
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
factory( jQuery );
|
|
|
|
}
|
|
|
|
}(function( $ ) {
|
2010-05-20 00:33:23 +00:00
|
|
|
|
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,
|
|
|
|
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({
|
2014-08-07 12:40:48 +00:00
|
|
|
scrollParent: function( includeHidden ) {
|
2013-10-29 22:35:42 +00:00
|
|
|
var position = this.css( "position" ),
|
|
|
|
excludeStaticParent = position === "absolute",
|
2014-08-07 12:40:48 +00:00
|
|
|
overflowRegex = includeHidden ? /(auto|scroll|hidden)/ : /(auto|scroll)/,
|
2013-10-29 22:35:42 +00:00
|
|
|
scrollParent = this.parents().filter( function() {
|
|
|
|
var parent = $( this );
|
|
|
|
if ( excludeStaticParent && parent.css( "position" ) === "static" ) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-08-07 12:40:48 +00:00
|
|
|
return overflowRegex.test( parent.css( "overflow" ) + parent.css( "overflow-y" ) + parent.css( "overflow-x" ) );
|
2013-10-29 22:35:42 +00:00
|
|
|
}).eq( 0 );
|
2008-11-28 15:43:32 +00:00
|
|
|
|
2013-10-29 22:35:42 +00:00
|
|
|
return position === "fixed" || !scrollParent.length ? $( this[ 0 ].ownerDocument || document ) : scrollParent;
|
2009-08-05 13:30:55 +00:00
|
|
|
},
|
|
|
|
|
2013-10-23 12:17:21 +00:00
|
|
|
uniqueId: (function() {
|
|
|
|
var uuid = 0;
|
|
|
|
|
|
|
|
return function() {
|
|
|
|
return this.each(function() {
|
|
|
|
if ( !this.id ) {
|
|
|
|
this.id = "ui-id-" + ( ++uuid );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
})(),
|
2012-05-30 01:55:43 +00:00
|
|
|
|
|
|
|
removeUniqueId: function() {
|
|
|
|
return this.each(function() {
|
2013-10-23 12:17:21 +00:00
|
|
|
if ( /^ui-id-\d+$/.test( this.id ) ) {
|
2012-05-30 01:55:43 +00:00
|
|
|
$( 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;
|
|
|
|
}
|
2014-07-30 14:03:53 +00:00
|
|
|
img = $( "img[usemap='#" + mapName + "']" )[ 0 ];
|
2011-04-15 14:51:56 +00:00
|
|
|
return !!img && visible( img );
|
|
|
|
}
|
2015-01-09 21:53:30 +00:00
|
|
|
return ( /^(input|select|textarea|button|object)$/.test( nodeName ) ?
|
2012-04-02 19:55:50 +00:00
|
|
|
!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-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-08-23 11:30:29 +00:00
|
|
|
$.fn.extend({
|
2014-02-21 12:22:39 +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 ),
|
|
|
|
|
2014-04-03 14:52:30 +00:00
|
|
|
disableSelection: (function() {
|
|
|
|
var eventType = "onselectstart" in document.createElement( "div" ) ?
|
|
|
|
"selectstart" :
|
|
|
|
"mousedown";
|
|
|
|
|
|
|
|
return function() {
|
|
|
|
return this.bind( eventType + ".ui-disableSelection", function( event ) {
|
2012-08-23 11:30:29 +00:00
|
|
|
event.preventDefault();
|
|
|
|
});
|
2014-04-03 14:52:30 +00:00
|
|
|
};
|
|
|
|
})(),
|
2012-08-23 11:30:29 +00:00
|
|
|
|
|
|
|
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 20:47:57 +00:00
|
|
|
call: function( instance, name, args, allowDisconnected ) {
|
2013-03-27 13:35:17 +00:00
|
|
|
var i,
|
|
|
|
set = instance.plugins[ name ];
|
2013-03-27 20:47:57 +00:00
|
|
|
|
|
|
|
if ( !set ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !allowDisconnected && ( !instance.element[ 0 ].parentNode || instance.element[ 0 ].parentNode.nodeType === 11 ) ) {
|
2013-03-27 13:35:17 +00:00
|
|
|
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
|
|
|
|
2013-07-12 16:40:48 +00:00
|
|
|
}));
|