mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
Merge branch 'master' of github.com:jquery/jquery-ui into interactions
Conflicts: ui/jquery.ui.draggable.js ui/jquery.ui.droppable.js ui/jquery.ui.sortable.js
This commit is contained in:
commit
854f6df2bc
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
* text=auto
|
@ -229,3 +229,5 @@ Viktor Kojouharov <vkojouharov@gmail.com>
|
|||||||
Pawel Maruszczyk <lord_t@o2.pl>
|
Pawel Maruszczyk <lord_t@o2.pl>
|
||||||
Pavel Selitskas <p.selitskas@gmail.com>
|
Pavel Selitskas <p.selitskas@gmail.com>
|
||||||
Bjørn Johansen <bjorn.johansen@metronet.no>
|
Bjørn Johansen <bjorn.johansen@metronet.no>
|
||||||
|
Matthieu Penant <thieum22@hotmail.com>
|
||||||
|
Dominic Barnes <dominic@dbarnes.info>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
Copyright 2012 jQuery Foundation and other contributors,
|
Copyright 2013 jQuery Foundation and other contributors,
|
||||||
http://jqueryui.com/
|
http://jqueryui.com/
|
||||||
|
|
||||||
This software consists of voluntary contributions made by many
|
This software consists of voluntary contributions made by many
|
||||||
|
@ -9,9 +9,6 @@
|
|||||||
|
|
||||||
var baseDir, repoDir, prevVersion, newVersion, nextVersion, tagTime, preRelease,
|
var baseDir, repoDir, prevVersion, newVersion, nextVersion, tagTime, preRelease,
|
||||||
fs = require( "fs" ),
|
fs = require( "fs" ),
|
||||||
path = require( "path" ),
|
|
||||||
// support: node <0.8
|
|
||||||
existsSync = fs.existsSync || path.existsSync,
|
|
||||||
rnewline = /\r?\n/,
|
rnewline = /\r?\n/,
|
||||||
repo = "git@github.com:jquery/jquery-ui.git",
|
repo = "git@github.com:jquery/jquery-ui.git",
|
||||||
branch = "master";
|
branch = "master";
|
||||||
@ -50,8 +47,6 @@ walk([
|
|||||||
section( "updating trac" ),
|
section( "updating trac" ),
|
||||||
updateTrac,
|
updateTrac,
|
||||||
confirm
|
confirm
|
||||||
|
|
||||||
// TODO: upload release zip to GitHub
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
||||||
@ -376,7 +371,7 @@ function bootstrap( fn ) {
|
|||||||
baseDir = process.cwd() + "/__release";
|
baseDir = process.cwd() + "/__release";
|
||||||
repoDir = baseDir + "/repo";
|
repoDir = baseDir + "/repo";
|
||||||
|
|
||||||
if ( existsSync( baseDir ) ) {
|
if ( fs.existsSync( baseDir ) ) {
|
||||||
console.log( "The directory '" + baseDir + "' already exists." );
|
console.log( "The directory '" + baseDir + "' already exists." );
|
||||||
console.log( "Aborting." );
|
console.log( "Aborting." );
|
||||||
process.exit( 1 );
|
process.exit( 1 );
|
||||||
|
10
package.json
10
package.json
@ -28,6 +28,16 @@
|
|||||||
"name": "Corey Frang",
|
"name": "Corey Frang",
|
||||||
"email": "gnarf37@gmail.com",
|
"email": "gnarf37@gmail.com",
|
||||||
"url": "http://gnarf.net"
|
"url": "http://gnarf.net"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Mike Sherov",
|
||||||
|
"email": "mike.sherov@gmail.com",
|
||||||
|
"url": "http://mike.sherov.com"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "TJ VanToll",
|
||||||
|
"email": "tj.vantoll@gmail.com",
|
||||||
|
"url": "http://tjvantoll.com"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"repository": {
|
"repository": {
|
||||||
|
@ -19,10 +19,10 @@ asyncTest( "focus", function() {
|
|||||||
$( "#inputTabindex0" )
|
$( "#inputTabindex0" )
|
||||||
.one( "focus", function() {
|
.one( "focus", function() {
|
||||||
ok( true, "event triggered" );
|
ok( true, "event triggered" );
|
||||||
|
start();
|
||||||
})
|
})
|
||||||
.focus( 500, function() {
|
.focus( 500, function() {
|
||||||
ok( true, "callback triggered" );
|
ok( true, "callback triggered" );
|
||||||
start();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
2
themes/base/jquery.ui.accordion.css
vendored
2
themes/base/jquery.ui.accordion.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Accordion @VERSION
|
* jQuery UI Accordion @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.all.css
vendored
2
themes/base/jquery.ui.all.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI CSS Framework @VERSION
|
* jQuery UI CSS Framework @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.autocomplete.css
vendored
2
themes/base/jquery.ui.autocomplete.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Autocomplete @VERSION
|
* jQuery UI Autocomplete @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.base.css
vendored
2
themes/base/jquery.ui.base.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI CSS Framework @VERSION
|
* jQuery UI CSS Framework @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.button.css
vendored
2
themes/base/jquery.ui.button.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Button @VERSION
|
* jQuery UI Button @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.core.css
vendored
2
themes/base/jquery.ui.core.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI CSS Framework @VERSION
|
* jQuery UI CSS Framework @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.datepicker.css
vendored
2
themes/base/jquery.ui.datepicker.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Datepicker @VERSION
|
* jQuery UI Datepicker @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.dialog.css
vendored
2
themes/base/jquery.ui.dialog.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Dialog @VERSION
|
* jQuery UI Dialog @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.menu.css
vendored
2
themes/base/jquery.ui.menu.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Menu @VERSION
|
* jQuery UI Menu @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.progressbar.css
vendored
2
themes/base/jquery.ui.progressbar.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Progressbar @VERSION
|
* jQuery UI Progressbar @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.resizable.css
vendored
2
themes/base/jquery.ui.resizable.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Resizable @VERSION
|
* jQuery UI Resizable @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.selectable.css
vendored
2
themes/base/jquery.ui.selectable.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Selectable @VERSION
|
* jQuery UI Selectable @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.slider.css
vendored
2
themes/base/jquery.ui.slider.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Slider @VERSION
|
* jQuery UI Slider @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.spinner.css
vendored
2
themes/base/jquery.ui.spinner.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Spinner @VERSION
|
* jQuery UI Spinner @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.tabs.css
vendored
2
themes/base/jquery.ui.tabs.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Tabs @VERSION
|
* jQuery UI Tabs @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.theme.css
vendored
2
themes/base/jquery.ui.theme.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI CSS Framework @VERSION
|
* jQuery UI CSS Framework @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
themes/base/jquery.ui.tooltip.css
vendored
2
themes/base/jquery.ui.tooltip.css
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Tooltip @VERSION
|
* jQuery UI Tooltip @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*/
|
*/
|
||||||
|
2
ui/jquery.ui.accordion.js
vendored
2
ui/jquery.ui.accordion.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Accordion @VERSION
|
* jQuery UI Accordion @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.autocomplete.js
vendored
2
ui/jquery.ui.autocomplete.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Autocomplete @VERSION
|
* jQuery UI Autocomplete @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.button.js
vendored
2
ui/jquery.ui.button.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Button @VERSION
|
* jQuery UI Button @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.core.js
vendored
2
ui/jquery.ui.core.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Core @VERSION
|
* jQuery UI Core @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.datepicker.js
vendored
2
ui/jquery.ui.datepicker.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Datepicker @VERSION
|
* jQuery UI Datepicker @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.dialog.js
vendored
2
ui/jquery.ui.dialog.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Dialog @VERSION
|
* jQuery UI Dialog @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
4
ui/jquery.ui.draggable.js
vendored
4
ui/jquery.ui.draggable.js
vendored
@ -2,8 +2,8 @@
|
|||||||
* jQuery UI Draggable @VERSION
|
* jQuery UI Draggable @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
* http://docs.jquery.com/UI/Draggable
|
* http://docs.jquery.com/UI/Draggable
|
||||||
|
4
ui/jquery.ui.droppable.js
vendored
4
ui/jquery.ui.droppable.js
vendored
@ -2,8 +2,8 @@
|
|||||||
* jQuery UI Droppable @VERSION
|
* jQuery UI Droppable @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
* http://docs.jquery.com/UI/Droppable
|
* http://docs.jquery.com/UI/Droppable
|
||||||
|
2
ui/jquery.ui.effect-blind.js
vendored
2
ui/jquery.ui.effect-blind.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Effects Blind @VERSION
|
* jQuery UI Effects Blind @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.effect-bounce.js
vendored
2
ui/jquery.ui.effect-bounce.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Effects Bounce @VERSION
|
* jQuery UI Effects Bounce @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.effect-clip.js
vendored
2
ui/jquery.ui.effect-clip.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Effects Clip @VERSION
|
* jQuery UI Effects Clip @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.effect-drop.js
vendored
2
ui/jquery.ui.effect-drop.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Effects Drop @VERSION
|
* jQuery UI Effects Drop @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.effect-explode.js
vendored
2
ui/jquery.ui.effect-explode.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Effects Explode @VERSION
|
* jQuery UI Effects Explode @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.effect-fade.js
vendored
2
ui/jquery.ui.effect-fade.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Effects Fade @VERSION
|
* jQuery UI Effects Fade @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.effect-fold.js
vendored
2
ui/jquery.ui.effect-fold.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Effects Fold @VERSION
|
* jQuery UI Effects Fold @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.effect-highlight.js
vendored
2
ui/jquery.ui.effect-highlight.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Effects Highlight @VERSION
|
* jQuery UI Effects Highlight @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.effect-pulsate.js
vendored
2
ui/jquery.ui.effect-pulsate.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Effects Pulsate @VERSION
|
* jQuery UI Effects Pulsate @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.effect-scale.js
vendored
2
ui/jquery.ui.effect-scale.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Effects Scale @VERSION
|
* jQuery UI Effects Scale @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.effect-shake.js
vendored
2
ui/jquery.ui.effect-shake.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Effects Shake @VERSION
|
* jQuery UI Effects Shake @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.effect-slide.js
vendored
2
ui/jquery.ui.effect-slide.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Effects Slide @VERSION
|
* jQuery UI Effects Slide @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.effect-transfer.js
vendored
2
ui/jquery.ui.effect-transfer.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Effects Transfer @VERSION
|
* jQuery UI Effects Transfer @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
17
ui/jquery.ui.effect.js
vendored
17
ui/jquery.ui.effect.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Effects @VERSION
|
* jQuery UI Effects @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
@ -17,14 +17,14 @@ $.effects = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* jQuery Color Animations v2.1.1
|
* jQuery Color Animations v2.1.2pre@b11ed286205199b8db74220cd237c4f045050e63
|
||||||
* https://github.com/jquery/jquery-color
|
* https://github.com/jquery/jquery-color
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2012 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
* Date: Sun Oct 28 15:08:06 2012 -0400
|
* Date: Thu Jan 3 14:21:32 2013 -0500
|
||||||
*/
|
*/
|
||||||
(function( jQuery, undefined ) {
|
(function( jQuery, undefined ) {
|
||||||
|
|
||||||
@ -596,7 +596,7 @@ color.hook = function( hook ) {
|
|||||||
var parsed, curElem,
|
var parsed, curElem,
|
||||||
backgroundColor = "";
|
backgroundColor = "";
|
||||||
|
|
||||||
if ( jQuery.type( value ) !== "string" || ( parsed = stringParse( value ) ) ) {
|
if ( value !== "transparent" && ( jQuery.type( value ) !== "string" || ( parsed = stringParse( value ) ) ) ) {
|
||||||
value = color( parsed || value );
|
value = color( parsed || value );
|
||||||
if ( !support.rgba && value._rgba[ 3 ] !== 1 ) {
|
if ( !support.rgba && value._rgba[ 3 ] !== 1 ) {
|
||||||
curElem = hook === "backgroundColor" ? elem.parentNode : elem;
|
curElem = hook === "backgroundColor" ? elem.parentNode : elem;
|
||||||
@ -754,6 +754,15 @@ function styleDifference( oldStyle, newStyle ) {
|
|||||||
return diff;
|
return diff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// support: jQuery <1.8
|
||||||
|
if ( !$.fn.addBack ) {
|
||||||
|
$.fn.addBack = function( selector ) {
|
||||||
|
return this.add( selector == null ?
|
||||||
|
this.prevObject : this.prevObject.filter( selector )
|
||||||
|
);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
$.effects.animateClass = function( value, duration, easing, callback ) {
|
$.effects.animateClass = function( value, duration, easing, callback ) {
|
||||||
var o = $.speed( duration, easing, callback );
|
var o = $.speed( duration, easing, callback );
|
||||||
|
|
||||||
|
2
ui/jquery.ui.menu.js
vendored
2
ui/jquery.ui.menu.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Menu @VERSION
|
* jQuery UI Menu @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.mouse.js
vendored
2
ui/jquery.ui.mouse.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Mouse @VERSION
|
* jQuery UI Mouse @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.position.js
vendored
2
ui/jquery.ui.position.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Position @VERSION
|
* jQuery UI Position @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.progressbar.js
vendored
2
ui/jquery.ui.progressbar.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Progressbar @VERSION
|
* jQuery UI Progressbar @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.resizable.js
vendored
2
ui/jquery.ui.resizable.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Resizable @VERSION
|
* jQuery UI Resizable @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.selectable.js
vendored
2
ui/jquery.ui.selectable.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Selectable @VERSION
|
* jQuery UI Selectable @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.slider.js
vendored
2
ui/jquery.ui.slider.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Slider @VERSION
|
* jQuery UI Slider @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
4
ui/jquery.ui.sortable.js
vendored
4
ui/jquery.ui.sortable.js
vendored
@ -2,8 +2,8 @@
|
|||||||
* jQuery UI Sortable @VERSION
|
* jQuery UI Sortable @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
* http://docs.jquery.com/UI/Sortable
|
* http://docs.jquery.com/UI/Sortable
|
||||||
|
2
ui/jquery.ui.spinner.js
vendored
2
ui/jquery.ui.spinner.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Spinner @VERSION
|
* jQuery UI Spinner @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
2
ui/jquery.ui.tabs.js
vendored
2
ui/jquery.ui.tabs.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Tabs @VERSION
|
* jQuery UI Tabs @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
6
ui/jquery.ui.tooltip.js
vendored
6
ui/jquery.ui.tooltip.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Tooltip @VERSION
|
* jQuery UI Tooltip @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
@ -46,7 +46,9 @@ $.widget( "ui.tooltip", {
|
|||||||
version: "@VERSION",
|
version: "@VERSION",
|
||||||
options: {
|
options: {
|
||||||
content: function() {
|
content: function() {
|
||||||
var title = $( this ).attr( "title" );
|
// support: IE<9, Opera in jQuery <1.7
|
||||||
|
// .text() can't accept undefined, so coerce to a string
|
||||||
|
var title = $( this ).attr( "title" ) || "";
|
||||||
// Escape title, since we're going from an attribute to raw HTML
|
// Escape title, since we're going from an attribute to raw HTML
|
||||||
return $( "<a>" ).text( title ).html();
|
return $( "<a>" ).text( title ).html();
|
||||||
},
|
},
|
||||||
|
2
ui/jquery.ui.widget.js
vendored
2
ui/jquery.ui.widget.js
vendored
@ -2,7 +2,7 @@
|
|||||||
* jQuery UI Widget @VERSION
|
* jQuery UI Widget @VERSION
|
||||||
* http://jqueryui.com
|
* http://jqueryui.com
|
||||||
*
|
*
|
||||||
* Copyright 2012 jQuery Foundation and other contributors
|
* Copyright 2013 jQuery Foundation and other contributors
|
||||||
* Released under the MIT license.
|
* Released under the MIT license.
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user