mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Merge branch 'master' into selectmenu
This commit is contained in:
commit
682a321d1e
@ -1,4 +1,4 @@
|
||||
Copyright (c) 2011 Paul Bakaus, http://jqueryui.com/
|
||||
Copyright (c) 2012 Paul Bakaus, http://jqueryui.com/
|
||||
|
||||
This software consists of voluntary contributions made by many
|
||||
individuals (AUTHORS.txt, http://jqueryui.com/about) For exact
|
||||
|
2
external/qunit.css
vendored
2
external/qunit.css
vendored
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* QUnit v1.4.0pre - A JavaScript Unit Testing Framework
|
||||
* QUnit v1.4.0 - A JavaScript Unit Testing Framework
|
||||
*
|
||||
* http://docs.jquery.com/QUnit
|
||||
*
|
||||
|
401
external/qunit.js
vendored
401
external/qunit.js
vendored
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* QUnit v1.4.0pre - A JavaScript Unit Testing Framework
|
||||
* QUnit v1.4.0 - A JavaScript Unit Testing Framework
|
||||
*
|
||||
* http://docs.jquery.com/QUnit
|
||||
*
|
||||
@ -21,7 +21,7 @@ var defined = {
|
||||
} catch(e) {
|
||||
return false;
|
||||
}
|
||||
})()
|
||||
}())
|
||||
};
|
||||
|
||||
var testId = 0,
|
||||
@ -85,14 +85,17 @@ Test.prototype = {
|
||||
// TODO why??
|
||||
QUnit.current_testEnvironment = this.testEnvironment;
|
||||
|
||||
try {
|
||||
if ( !config.pollution ) {
|
||||
saveGlobal();
|
||||
}
|
||||
|
||||
if ( config.notrycatch ) {
|
||||
this.testEnvironment.setup.call(this.testEnvironment);
|
||||
return;
|
||||
}
|
||||
try {
|
||||
this.testEnvironment.setup.call(this.testEnvironment);
|
||||
} catch(e) {
|
||||
QUnit.ok( false, "Setup failed on " + this.testName + ": " + e.message );
|
||||
QUnit.pushFailure( "Setup failed on " + this.testName + ": " + e.message, extractStacktrace( e, 1 ) );
|
||||
}
|
||||
},
|
||||
run: function() {
|
||||
@ -108,8 +111,7 @@ Test.prototype = {
|
||||
try {
|
||||
this.callback.call(this.testEnvironment);
|
||||
} catch(e) {
|
||||
fail("Test " + this.testName + " died, exception and test follows", e, this.callback);
|
||||
QUnit.ok( false, "Died on test #" + (this.assertions.length + 1) + ": " + e.message + " - " + QUnit.jsDump.parse(e) );
|
||||
QUnit.pushFailure( "Died on test #" + (this.assertions.length + 1) + ": " + e.message, extractStacktrace( e, 1 ) );
|
||||
// else next test will carry the responsibility
|
||||
saveGlobal();
|
||||
|
||||
@ -121,20 +123,28 @@ Test.prototype = {
|
||||
},
|
||||
teardown: function() {
|
||||
config.current = this;
|
||||
if ( config.notrycatch ) {
|
||||
this.testEnvironment.teardown.call(this.testEnvironment);
|
||||
return;
|
||||
} else {
|
||||
try {
|
||||
this.testEnvironment.teardown.call(this.testEnvironment);
|
||||
checkPollution();
|
||||
} catch(e) {
|
||||
QUnit.ok( false, "Teardown failed on " + this.testName + ": " + e.message );
|
||||
QUnit.pushFailure( "Teardown failed on " + this.testName + ": " + e.message, extractStacktrace( e, 1 ) );
|
||||
}
|
||||
}
|
||||
checkPollution();
|
||||
},
|
||||
finish: function() {
|
||||
config.current = this;
|
||||
if ( this.expected != null && this.expected != this.assertions.length ) {
|
||||
QUnit.ok( false, "Expected " + this.expected + " assertions, but " + this.assertions.length + " were run" );
|
||||
QUnit.pushFailure( "Expected " + this.expected + " assertions, but " + this.assertions.length + " were run" );
|
||||
} else if ( this.expected == null && !this.assertions.length ) {
|
||||
QUnit.pushFailure( "Expected at least one assertion, but none were run - call expect(0) to accept zero assertions." );
|
||||
}
|
||||
|
||||
var good = 0, bad = 0,
|
||||
li, i,
|
||||
tests = id("qunit-tests");
|
||||
|
||||
config.stats.all += this.assertions.length;
|
||||
@ -143,10 +153,10 @@ Test.prototype = {
|
||||
if ( tests ) {
|
||||
var ol = document.createElement("ol");
|
||||
|
||||
for ( var i = 0; i < this.assertions.length; i++ ) {
|
||||
for ( i = 0; i < this.assertions.length; i++ ) {
|
||||
var assertion = this.assertions[i];
|
||||
|
||||
var li = document.createElement("li");
|
||||
li = document.createElement("li");
|
||||
li.className = assertion.result ? "pass" : "fail";
|
||||
li.innerHTML = assertion.message || (assertion.result ? "okay" : "failed");
|
||||
ol.appendChild( li );
|
||||
@ -163,13 +173,13 @@ Test.prototype = {
|
||||
// store result when possible
|
||||
if ( QUnit.config.reorder && defined.sessionStorage ) {
|
||||
if (bad) {
|
||||
sessionStorage.setItem("qunit-" + this.module + "-" + this.testName, bad);
|
||||
sessionStorage.setItem("qunit-test-" + this.module + "-" + this.testName, bad);
|
||||
} else {
|
||||
sessionStorage.removeItem("qunit-" + this.module + "-" + this.testName);
|
||||
sessionStorage.removeItem("qunit-test-" + this.module + "-" + this.testName);
|
||||
}
|
||||
}
|
||||
|
||||
if (bad == 0) {
|
||||
if (bad === 0) {
|
||||
ol.style.display = "none";
|
||||
}
|
||||
|
||||
@ -196,7 +206,7 @@ Test.prototype = {
|
||||
}
|
||||
});
|
||||
|
||||
var li = id(this.id);
|
||||
li = id(this.id);
|
||||
li.className = bad ? "fail" : "pass";
|
||||
li.removeChild( li.firstChild );
|
||||
li.appendChild( b );
|
||||
@ -204,7 +214,7 @@ Test.prototype = {
|
||||
li.appendChild( ol );
|
||||
|
||||
} else {
|
||||
for ( var i = 0; i < this.assertions.length; i++ ) {
|
||||
for ( i = 0; i < this.assertions.length; i++ ) {
|
||||
if ( !this.assertions[i].result ) {
|
||||
bad++;
|
||||
config.stats.bad++;
|
||||
@ -213,11 +223,7 @@ Test.prototype = {
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
QUnit.reset();
|
||||
} catch(e) {
|
||||
fail("reset() failed, following Test " + this.testName + ", exception and reset fn follows", e, QUnit.reset);
|
||||
}
|
||||
|
||||
runLoggingCallbacks( 'testDone', QUnit, {
|
||||
name: this.testName,
|
||||
@ -249,12 +255,12 @@ Test.prototype = {
|
||||
});
|
||||
}
|
||||
// defer when previous test run passed, if storage is available
|
||||
var bad = QUnit.config.reorder && defined.sessionStorage && +sessionStorage.getItem("qunit-" + this.module + "-" + this.testName);
|
||||
var bad = QUnit.config.reorder && defined.sessionStorage && +sessionStorage.getItem("qunit-test-" + this.module + "-" + this.testName);
|
||||
if (bad) {
|
||||
run();
|
||||
} else {
|
||||
synchronize(run, true);
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
@ -298,46 +304,39 @@ var QUnit = {
|
||||
test.queue();
|
||||
},
|
||||
|
||||
/**
|
||||
* Specify the number of expected assertions to gurantee that failed test (no assertions are run at all) don't slip through.
|
||||
*/
|
||||
// Specify the number of expected assertions to gurantee that failed test (no assertions are run at all) don't slip through.
|
||||
expect: function(asserts) {
|
||||
config.current.expected = asserts;
|
||||
},
|
||||
|
||||
/**
|
||||
* Asserts true.
|
||||
* @example ok( "asdfasdf".length > 5, "There must be at least 5 chars" );
|
||||
*/
|
||||
ok: function(a, msg) {
|
||||
// Asserts true.
|
||||
// @example ok( "asdfasdf".length > 5, "There must be at least 5 chars" );
|
||||
ok: function(result, msg) {
|
||||
if (!config.current) {
|
||||
throw new Error("ok() assertion outside test context, was " + sourceFromStacktrace(2));
|
||||
}
|
||||
a = !!a;
|
||||
result = !!result;
|
||||
var details = {
|
||||
result: a,
|
||||
result: result,
|
||||
message: msg
|
||||
};
|
||||
msg = escapeInnerText(msg);
|
||||
msg = escapeInnerText(msg || (result ? "okay" : "failed"));
|
||||
if ( !result ) {
|
||||
var source = sourceFromStacktrace(2);
|
||||
if (source) {
|
||||
details.source = source;
|
||||
msg += '<table><tr class="test-source"><th>Source: </th><td><pre>' + escapeInnerText(source) + '</pre></td></tr></table>';
|
||||
}
|
||||
}
|
||||
runLoggingCallbacks( 'log', QUnit, details );
|
||||
config.current.assertions.push({
|
||||
result: a,
|
||||
result: result,
|
||||
message: msg
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* Checks that the first two arguments are equal, with an optional message.
|
||||
* Prints out both actual and expected values.
|
||||
*
|
||||
* Prefered to ok( actual == expected, message )
|
||||
*
|
||||
* @example equal( format("Received {0} bytes.", 2), "Received 2 bytes." );
|
||||
*
|
||||
* @param Object actual
|
||||
* @param Object expected
|
||||
* @param String message (optional)
|
||||
*/
|
||||
// Checks that the first two arguments are equal, with an optional message. Prints out both actual and expected values.
|
||||
// @example equal( format("Received {0} bytes.", 2), "Received 2 bytes." );
|
||||
equal: function(actual, expected, message) {
|
||||
QUnit.push(expected == actual, actual, expected, message);
|
||||
},
|
||||
@ -441,20 +440,20 @@ var QUnit = {
|
||||
|
||||
//We want access to the constructor's prototype
|
||||
(function() {
|
||||
function F(){};
|
||||
function F(){}
|
||||
F.prototype = QUnit;
|
||||
QUnit = new F();
|
||||
//Make F QUnit's constructor so that we can add to the prototype later
|
||||
QUnit.constructor = F;
|
||||
})();
|
||||
}());
|
||||
|
||||
// deprecated; still export them to window to provide clear error messages
|
||||
// next step: remove entirely
|
||||
QUnit.equals = function() {
|
||||
throw new Error("QUnit.equals has been deprecated since 2009 (e88049a0), use QUnit.equal instead");
|
||||
QUnit.push(false, false, false, "QUnit.equals has been deprecated since 2009 (e88049a0), use QUnit.equal instead");
|
||||
};
|
||||
QUnit.same = function() {
|
||||
throw new Error("QUnit.same has been deprecated since 2009 (e88049a0), use QUnit.deepEqual instead");
|
||||
QUnit.push(false, false, false, "QUnit.same has been deprecated since 2009 (e88049a0), use QUnit.deepEqual instead");
|
||||
};
|
||||
|
||||
// Maintain internal state
|
||||
@ -510,16 +509,14 @@ var config = {
|
||||
config.filter = urlParams.filter;
|
||||
|
||||
// Figure out if we're running the tests from a server or not
|
||||
QUnit.isLocal = !!(location.protocol === 'file:');
|
||||
})();
|
||||
QUnit.isLocal = location.protocol === 'file:';
|
||||
}());
|
||||
|
||||
// Expose the API as global variables, unless an 'exports'
|
||||
// object exists, in that case we assume we're in CommonJS
|
||||
// object exists, in that case we assume we're in CommonJS - export everything at the end
|
||||
if ( typeof exports === "undefined" || typeof require === "undefined" ) {
|
||||
extend(window, QUnit);
|
||||
window.QUnit = QUnit;
|
||||
} else {
|
||||
module.exports = QUnit;
|
||||
}
|
||||
|
||||
// define these after exposing globals to keep them in these QUnit namespace only
|
||||
@ -531,7 +528,7 @@ extend(QUnit, {
|
||||
extend(config, {
|
||||
stats: { all: 0, bad: 0 },
|
||||
moduleStats: { all: 0, bad: 0 },
|
||||
started: +new Date,
|
||||
started: +new Date(),
|
||||
updateRate: 1000,
|
||||
blocking: false,
|
||||
autostart: true,
|
||||
@ -576,11 +573,8 @@ extend(QUnit, {
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Resets the test setup. Useful for tests that modify the DOM.
|
||||
*
|
||||
* If jQuery is available, uses jQuery's html(), otherwise just innerHTML.
|
||||
*/
|
||||
// Resets the test setup. Useful for tests that modify the DOM.
|
||||
// If jQuery is available, uses jQuery's html(), otherwise just innerHTML.
|
||||
reset: function() {
|
||||
if ( window.jQuery ) {
|
||||
jQuery( "#qunit-fixture" ).html( config.fixture );
|
||||
@ -592,14 +586,8 @@ extend(QUnit, {
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Trigger an event on an element.
|
||||
*
|
||||
* @example triggerEvent( document.body, "click" );
|
||||
*
|
||||
* @param DOMElement elem
|
||||
* @param String type
|
||||
*/
|
||||
// Trigger an event on an element.
|
||||
// @example triggerEvent( document.body, "click" );
|
||||
triggerEvent: function( elem, type, event ) {
|
||||
if ( document.createEvent ) {
|
||||
event = document.createEvent("MouseEvents");
|
||||
@ -633,9 +621,8 @@ extend(QUnit, {
|
||||
case 'Number':
|
||||
if (isNaN(obj)) {
|
||||
return "nan";
|
||||
} else {
|
||||
return "number";
|
||||
}
|
||||
return "number";
|
||||
case 'String':
|
||||
case 'Boolean':
|
||||
case 'Array':
|
||||
@ -688,6 +675,23 @@ extend(QUnit, {
|
||||
});
|
||||
},
|
||||
|
||||
pushFailure: function(message, source) {
|
||||
var details = {
|
||||
result: false,
|
||||
message: message
|
||||
};
|
||||
var output = escapeInnerText(message);
|
||||
if (source) {
|
||||
details.source = source;
|
||||
output += '<table><tr class="test-source"><th>Source: </th><td><pre>' + escapeInnerText(source) + '</pre></td></tr></table>';
|
||||
}
|
||||
runLoggingCallbacks( 'log', QUnit, details );
|
||||
config.current.assertions.push({
|
||||
result: false,
|
||||
message: output
|
||||
});
|
||||
},
|
||||
|
||||
url: function( params ) {
|
||||
params = extend( extend( {}, QUnit.urlParams ), params );
|
||||
var querystring = "?",
|
||||
@ -743,7 +747,8 @@ QUnit.load = function() {
|
||||
config.blocking = false;
|
||||
|
||||
var urlConfigHtml = '', len = config.urlConfig.length;
|
||||
for ( var i = 0, val; i < len, val = config.urlConfig[i]; i++ ) {
|
||||
for ( var i = 0, val; i < len; i++ ) {
|
||||
val = config.urlConfig[i];
|
||||
config[val] = QUnit.urlParams[val];
|
||||
urlConfigHtml += '<label><input name="' + val + '" type="checkbox"' + ( config[val] ? ' checked="checked"' : '' ) + '>' + val + '</label>';
|
||||
}
|
||||
@ -811,10 +816,10 @@ addEvent(window, "load", QUnit.load);
|
||||
// addEvent(window, "error") gives us a useless event object
|
||||
window.onerror = function( message, file, line ) {
|
||||
if ( QUnit.config.current ) {
|
||||
ok( false, message + ", " + file + ":" + line );
|
||||
QUnit.pushFailure( message, file + ":" + line );
|
||||
} else {
|
||||
test( "global failure", function() {
|
||||
ok( false, message + ", " + file + ":" + line );
|
||||
QUnit.test( "global failure", function() {
|
||||
QUnit.pushFailure( message, file + ":" + line );
|
||||
});
|
||||
}
|
||||
};
|
||||
@ -834,7 +839,7 @@ function done() {
|
||||
|
||||
var banner = id("qunit-banner"),
|
||||
tests = id("qunit-tests"),
|
||||
runtime = +new Date - config.started,
|
||||
runtime = +new Date() - config.started,
|
||||
passed = config.stats.all - config.stats.bad,
|
||||
html = [
|
||||
'Tests completed in ',
|
||||
@ -869,7 +874,7 @@ function done() {
|
||||
// clear own sessionStorage items if all tests passed
|
||||
if ( config.reorder && defined.sessionStorage && config.stats.bad === 0 ) {
|
||||
for (var key in sessionStorage) {
|
||||
if (sessionStorage.hasOwnProperty(key) && key.indexOf("qunit-") === 0 ) {
|
||||
if (sessionStorage.hasOwnProperty(key) && key.indexOf("qunit-test-") === 0 ) {
|
||||
sessionStorage.removeItem(key);
|
||||
}
|
||||
}
|
||||
@ -909,11 +914,8 @@ function validTest( name ) {
|
||||
|
||||
// so far supports only Firefox, Chrome and Opera (buggy)
|
||||
// could be extended in the future to use something like https://github.com/csnover/TraceKit
|
||||
function sourceFromStacktrace(offset) {
|
||||
function extractStacktrace( e, offset ) {
|
||||
offset = offset || 3;
|
||||
try {
|
||||
throw new Error();
|
||||
} catch ( e ) {
|
||||
if (e.stacktrace) {
|
||||
// Opera
|
||||
return e.stacktrace.split("\n")[offset + 3];
|
||||
@ -926,9 +928,20 @@ function sourceFromStacktrace(offset) {
|
||||
return stack[offset];
|
||||
} else if (e.sourceURL) {
|
||||
// Safari, PhantomJS
|
||||
// TODO sourceURL points at the 'throw new Error' line above, useless
|
||||
//return e.sourceURL + ":" + e.line;
|
||||
// hopefully one day Safari provides actual stacktraces
|
||||
// exclude useless self-reference for generated Error objects
|
||||
if ( /qunit.js$/.test( e.sourceURL ) ) {
|
||||
return;
|
||||
}
|
||||
// for actual exceptions, this is useful
|
||||
return e.sourceURL + ":" + e.line;
|
||||
}
|
||||
}
|
||||
function sourceFromStacktrace(offset) {
|
||||
try {
|
||||
throw new Error();
|
||||
} catch ( e ) {
|
||||
return extractStacktrace( e, offset );
|
||||
}
|
||||
}
|
||||
|
||||
@ -956,6 +969,9 @@ function synchronize( callback, last ) {
|
||||
}
|
||||
|
||||
function process( last ) {
|
||||
function next() {
|
||||
process( last );
|
||||
}
|
||||
var start = new Date().getTime();
|
||||
config.depth = config.depth ? config.depth + 1 : 1;
|
||||
|
||||
@ -963,9 +979,7 @@ function process( last ) {
|
||||
if ( !defined.setTimeout || config.updateRate <= 0 || ( ( new Date().getTime() - start ) < config.updateRate ) ) {
|
||||
config.queue.shift()();
|
||||
} else {
|
||||
window.setTimeout( function(){
|
||||
process( last );
|
||||
}, 13 );
|
||||
window.setTimeout( next, 13 );
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -994,12 +1008,12 @@ function checkPollution( name ) {
|
||||
|
||||
var newGlobals = diff( config.pollution, old );
|
||||
if ( newGlobals.length > 0 ) {
|
||||
ok( false, "Introduced global variable(s): " + newGlobals.join(", ") );
|
||||
QUnit.pushFailure( "Introduced global variable(s): " + newGlobals.join(", ") );
|
||||
}
|
||||
|
||||
var deletedGlobals = diff( old, config.pollution );
|
||||
if ( deletedGlobals.length > 0 ) {
|
||||
ok( false, "Deleted global variable(s): " + deletedGlobals.join(", ") );
|
||||
QUnit.pushFailure( "Deleted global variable(s): " + deletedGlobals.join(", ") );
|
||||
}
|
||||
}
|
||||
|
||||
@ -1018,18 +1032,6 @@ function diff( a, b ) {
|
||||
return result;
|
||||
}
|
||||
|
||||
function fail(message, exception, callback) {
|
||||
if ( typeof console !== "undefined" && console.error && console.warn ) {
|
||||
console.error(message);
|
||||
console.error(exception);
|
||||
console.error(exception.stack);
|
||||
console.warn(callback.toString());
|
||||
|
||||
} else if ( window.opera && opera.postError ) {
|
||||
opera.postError(message, exception, callback.toString);
|
||||
}
|
||||
}
|
||||
|
||||
function extend(a, b) {
|
||||
for ( var prop in b ) {
|
||||
if ( b[prop] === undefined ) {
|
||||
@ -1081,7 +1083,7 @@ function runLoggingCallbacks(key, scope, args) {
|
||||
|
||||
// Test for equality any JavaScript type.
|
||||
// Author: Philippe Rathé <prathe@gmail.com>
|
||||
QUnit.equiv = function () {
|
||||
QUnit.equiv = (function() {
|
||||
|
||||
var innerEquiv; // the real equiv function
|
||||
var callers = []; // stack to decide between skip/abort functions
|
||||
@ -1103,7 +1105,7 @@ QUnit.equiv = function () {
|
||||
return obj.__proto__;
|
||||
};
|
||||
|
||||
var callbacks = function () {
|
||||
var callbacks = (function () {
|
||||
|
||||
// for string, boolean, number and null
|
||||
function useStrictEquality(b, a) {
|
||||
@ -1130,17 +1132,18 @@ QUnit.equiv = function () {
|
||||
},
|
||||
|
||||
"date" : function(b, a) {
|
||||
return QUnit.objectType(b) === "date"
|
||||
&& a.valueOf() === b.valueOf();
|
||||
return QUnit.objectType(b) === "date" && a.valueOf() === b.valueOf();
|
||||
},
|
||||
|
||||
"regexp" : function(b, a) {
|
||||
return QUnit.objectType(b) === "regexp"
|
||||
&& a.source === b.source && // the regex itself
|
||||
a.global === b.global && // and its modifers
|
||||
return QUnit.objectType(b) === "regexp" &&
|
||||
// the regex itself
|
||||
a.source === b.source &&
|
||||
// and its modifers
|
||||
a.global === b.global &&
|
||||
// (gmi) ...
|
||||
a.ignoreCase === b.ignoreCase
|
||||
&& a.multiline === b.multiline;
|
||||
a.ignoreCase === b.ignoreCase &&
|
||||
a.multiline === b.multiline;
|
||||
},
|
||||
|
||||
// - skip when the property is a method of an instance (OOP)
|
||||
@ -1156,7 +1159,7 @@ QUnit.equiv = function () {
|
||||
var len;
|
||||
|
||||
// b could be an object literal here
|
||||
if (!(QUnit.objectType(b) === "array")) {
|
||||
if (QUnit.objectType(b) !== "array") {
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -1210,9 +1213,10 @@ QUnit.equiv = function () {
|
||||
// and go deep
|
||||
loop = false;
|
||||
for (j = 0; j < parents.length; j++) {
|
||||
if (parents[j] === a[i])
|
||||
loop = true; // don't go down the same path
|
||||
// twice
|
||||
if (parents[j] === a[i]) {
|
||||
// don't go down the same path twice
|
||||
loop = true;
|
||||
}
|
||||
}
|
||||
aProperties.push(i); // collect a's properties
|
||||
|
||||
@ -1230,12 +1234,10 @@ QUnit.equiv = function () {
|
||||
}
|
||||
|
||||
// Ensures identical properties name
|
||||
return eq
|
||||
&& innerEquiv(aProperties.sort(), bProperties
|
||||
.sort());
|
||||
return eq && innerEquiv(aProperties.sort(), bProperties.sort());
|
||||
}
|
||||
};
|
||||
}();
|
||||
}());
|
||||
|
||||
innerEquiv = function() { // can take multiple arguments
|
||||
var args = Array.prototype.slice.apply(arguments);
|
||||
@ -1246,23 +1248,21 @@ QUnit.equiv = function () {
|
||||
return (function(a, b) {
|
||||
if (a === b) {
|
||||
return true; // catch the most you can
|
||||
} else if (a === null || b === null || typeof a === "undefined"
|
||||
|| typeof b === "undefined"
|
||||
|| QUnit.objectType(a) !== QUnit.objectType(b)) {
|
||||
} else if (a === null || b === null || typeof a === "undefined" ||
|
||||
typeof b === "undefined" ||
|
||||
QUnit.objectType(a) !== QUnit.objectType(b)) {
|
||||
return false; // don't lose time with error prone cases
|
||||
} else {
|
||||
return bindCallbacks(a, callbacks, [ b, a ]);
|
||||
}
|
||||
|
||||
// apply transition with (1..n) arguments
|
||||
})(args[0], args[1])
|
||||
&& arguments.callee.apply(this, args.splice(1,
|
||||
args.length - 1));
|
||||
}(args[0], args[1]) && arguments.callee.apply(this, args.splice(1, args.length - 1)));
|
||||
};
|
||||
|
||||
return innerEquiv;
|
||||
|
||||
}();
|
||||
}());
|
||||
|
||||
/**
|
||||
* jsDump Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com |
|
||||
@ -1277,33 +1277,36 @@ QUnit.equiv = function () {
|
||||
QUnit.jsDump = (function() {
|
||||
function quote( str ) {
|
||||
return '"' + str.toString().replace(/"/g, '\\"') + '"';
|
||||
};
|
||||
}
|
||||
function literal( o ) {
|
||||
return o + '';
|
||||
};
|
||||
}
|
||||
function join( pre, arr, post ) {
|
||||
var s = jsDump.separator(),
|
||||
base = jsDump.indent(),
|
||||
inner = jsDump.indent(1);
|
||||
if ( arr.join )
|
||||
if ( arr.join ) {
|
||||
arr = arr.join( ',' + s + inner );
|
||||
if ( !arr )
|
||||
}
|
||||
if ( !arr ) {
|
||||
return pre + post;
|
||||
}
|
||||
return [ pre, inner + arr, base + post ].join(s);
|
||||
};
|
||||
}
|
||||
function array( arr, stack ) {
|
||||
var i = arr.length, ret = Array(i);
|
||||
var i = arr.length, ret = new Array(i);
|
||||
this.up();
|
||||
while ( i-- )
|
||||
while ( i-- ) {
|
||||
ret[i] = this.parse( arr[i] , undefined , stack);
|
||||
}
|
||||
this.down();
|
||||
return join( '[', ret, ']' );
|
||||
};
|
||||
}
|
||||
|
||||
var reName = /^function (\w+)/;
|
||||
|
||||
var jsDump = {
|
||||
parse:function( obj, type, stack ) { //type is used mostly internally, you can fix a (custom)type in advance
|
||||
parse: function( obj, type, stack ) { //type is used mostly internally, you can fix a (custom)type in advance
|
||||
stack = stack || [ ];
|
||||
var parser = this.parsers[ type || this.typeOf(obj) ];
|
||||
type = typeof parser;
|
||||
@ -1321,7 +1324,7 @@ QUnit.jsDump = (function() {
|
||||
// else
|
||||
return (type == 'string') ? parser : this.parsers.error;
|
||||
},
|
||||
typeOf:function( obj ) {
|
||||
typeOf: function( obj ) {
|
||||
var type;
|
||||
if ( obj === null ) {
|
||||
type = "null";
|
||||
@ -1351,45 +1354,48 @@ QUnit.jsDump = (function() {
|
||||
}
|
||||
return type;
|
||||
},
|
||||
separator:function() {
|
||||
separator: function() {
|
||||
return this.multiline ? this.HTML ? '<br />' : '\n' : this.HTML ? ' ' : ' ';
|
||||
},
|
||||
indent:function( extra ) {// extra can be a number, shortcut for increasing-calling-decreasing
|
||||
if ( !this.multiline )
|
||||
indent: function( extra ) {// extra can be a number, shortcut for increasing-calling-decreasing
|
||||
if ( !this.multiline ) {
|
||||
return '';
|
||||
}
|
||||
var chr = this.indentChar;
|
||||
if ( this.HTML )
|
||||
if ( this.HTML ) {
|
||||
chr = chr.replace(/\t/g,' ').replace(/ /g,' ');
|
||||
return Array( this._depth_ + (extra||0) ).join(chr);
|
||||
}
|
||||
return new Array( this._depth_ + (extra||0) ).join(chr);
|
||||
},
|
||||
up:function( a ) {
|
||||
up: function( a ) {
|
||||
this._depth_ += a || 1;
|
||||
},
|
||||
down:function( a ) {
|
||||
down: function( a ) {
|
||||
this._depth_ -= a || 1;
|
||||
},
|
||||
setParser:function( name, parser ) {
|
||||
setParser: function( name, parser ) {
|
||||
this.parsers[name] = parser;
|
||||
},
|
||||
// The next 3 are exposed so you can use them
|
||||
quote:quote,
|
||||
literal:literal,
|
||||
join:join,
|
||||
quote: quote,
|
||||
literal: literal,
|
||||
join: join,
|
||||
//
|
||||
_depth_: 1,
|
||||
// This is the list of parsers, to modify them, use jsDump.setParser
|
||||
parsers:{
|
||||
parsers: {
|
||||
window: '[Window]',
|
||||
document: '[Document]',
|
||||
error:'[ERROR]', //when no parser is found, shouldn't happen
|
||||
error: '[ERROR]', //when no parser is found, shouldn't happen
|
||||
unknown: '[Unknown]',
|
||||
'null':'null',
|
||||
'undefined':'undefined',
|
||||
'function':function( fn ) {
|
||||
'null': 'null',
|
||||
'undefined': 'undefined',
|
||||
'function': function( fn ) {
|
||||
var ret = 'function',
|
||||
name = 'name' in fn ? fn.name : (reName.exec(fn)||[])[1];//functions never have name in IE
|
||||
if ( name )
|
||||
if ( name ) {
|
||||
ret += ' ' + name;
|
||||
}
|
||||
ret += '(';
|
||||
|
||||
ret = [ ret, QUnit.jsDump.parse( fn, 'functionArgs' ), '){'].join('');
|
||||
@ -1397,18 +1403,26 @@ QUnit.jsDump = (function() {
|
||||
},
|
||||
array: array,
|
||||
nodelist: array,
|
||||
arguments: array,
|
||||
object:function( map, stack ) {
|
||||
var ret = [ ];
|
||||
'arguments': array,
|
||||
object: function( map, stack ) {
|
||||
var ret = [ ], keys, key, val, i;
|
||||
QUnit.jsDump.up();
|
||||
for ( var key in map ) {
|
||||
var val = map[key];
|
||||
ret.push( QUnit.jsDump.parse(key,'key') + ': ' + QUnit.jsDump.parse(val, undefined, stack));
|
||||
if (Object.keys) {
|
||||
keys = Object.keys( map );
|
||||
} else {
|
||||
keys = [];
|
||||
for (key in map) { keys.push( key ); }
|
||||
}
|
||||
keys.sort();
|
||||
for (i = 0; i < keys.length; i++) {
|
||||
key = keys[ i ];
|
||||
val = map[ key ];
|
||||
ret.push( QUnit.jsDump.parse( key, 'key' ) + ': ' + QUnit.jsDump.parse( val, undefined, stack ) );
|
||||
}
|
||||
QUnit.jsDump.down();
|
||||
return join( '{', ret, '}' );
|
||||
},
|
||||
node:function( node ) {
|
||||
node: function( node ) {
|
||||
var open = QUnit.jsDump.HTML ? '<' : '<',
|
||||
close = QUnit.jsDump.HTML ? '>' : '>';
|
||||
|
||||
@ -1417,28 +1431,32 @@ QUnit.jsDump = (function() {
|
||||
|
||||
for ( var a in QUnit.jsDump.DOMAttrs ) {
|
||||
var val = node[QUnit.jsDump.DOMAttrs[a]];
|
||||
if ( val )
|
||||
if ( val ) {
|
||||
ret += ' ' + a + '=' + QUnit.jsDump.parse( val, 'attribute' );
|
||||
}
|
||||
}
|
||||
return ret + close + open + '/' + tag + close;
|
||||
},
|
||||
functionArgs:function( fn ) {//function calls it internally, it's the arguments part of the function
|
||||
functionArgs: function( fn ) {//function calls it internally, it's the arguments part of the function
|
||||
var l = fn.length;
|
||||
if ( !l ) return '';
|
||||
if ( !l ) {
|
||||
return '';
|
||||
}
|
||||
|
||||
var args = Array(l);
|
||||
while ( l-- )
|
||||
var args = new Array(l);
|
||||
while ( l-- ) {
|
||||
args[l] = String.fromCharCode(97+l);//97 is 'a'
|
||||
}
|
||||
return ' ' + args.join(', ') + ' ';
|
||||
},
|
||||
key:quote, //object calls it internally, the key part of an item in a map
|
||||
functionCode:'[code]', //function calls it internally, it's the content of the function
|
||||
attribute:quote, //node calls it internally, it's an html attribute value
|
||||
string:quote,
|
||||
date:quote,
|
||||
regexp:literal, //regex
|
||||
number:literal,
|
||||
'boolean':literal
|
||||
key: quote, //object calls it internally, the key part of an item in a map
|
||||
functionCode: '[code]', //function calls it internally, it's the content of the function
|
||||
attribute: quote, //node calls it internally, it's an html attribute value
|
||||
string: quote,
|
||||
date: quote,
|
||||
regexp: literal, //regex
|
||||
number: literal,
|
||||
'boolean': literal
|
||||
},
|
||||
DOMAttrs:{//attributes to dump from nodes, name=>realName
|
||||
id:'id',
|
||||
@ -1451,7 +1469,7 @@ QUnit.jsDump = (function() {
|
||||
};
|
||||
|
||||
return jsDump;
|
||||
})();
|
||||
}());
|
||||
|
||||
// from Sizzle.js
|
||||
function getText( elems ) {
|
||||
@ -1471,7 +1489,7 @@ function getText( elems ) {
|
||||
}
|
||||
|
||||
return ret;
|
||||
};
|
||||
}
|
||||
|
||||
//from jquery.js
|
||||
function inArray( elem, array ) {
|
||||
@ -1506,26 +1524,29 @@ QUnit.diff = (function() {
|
||||
function diff(o, n) {
|
||||
var ns = {};
|
||||
var os = {};
|
||||
var i;
|
||||
|
||||
for (var i = 0; i < n.length; i++) {
|
||||
if (ns[n[i]] == null)
|
||||
for (i = 0; i < n.length; i++) {
|
||||
if (ns[n[i]] == null) {
|
||||
ns[n[i]] = {
|
||||
rows: [],
|
||||
o: null
|
||||
};
|
||||
}
|
||||
ns[n[i]].rows.push(i);
|
||||
}
|
||||
|
||||
for (var i = 0; i < o.length; i++) {
|
||||
if (os[o[i]] == null)
|
||||
for (i = 0; i < o.length; i++) {
|
||||
if (os[o[i]] == null) {
|
||||
os[o[i]] = {
|
||||
rows: [],
|
||||
n: null
|
||||
};
|
||||
}
|
||||
os[o[i]].rows.push(i);
|
||||
}
|
||||
|
||||
for (var i in ns) {
|
||||
for (i in ns) {
|
||||
if ( !hasOwn.call( ns, i ) ) {
|
||||
continue;
|
||||
}
|
||||
@ -1541,7 +1562,7 @@ QUnit.diff = (function() {
|
||||
}
|
||||
}
|
||||
|
||||
for (var i = 0; i < n.length - 1; i++) {
|
||||
for (i = 0; i < n.length - 1; i++) {
|
||||
if (n[i].text != null && n[i + 1].text == null && n[i].row + 1 < o.length && o[n[i].row + 1].text == null &&
|
||||
n[i + 1] == o[n[i].row + 1]) {
|
||||
n[i + 1] = {
|
||||
@ -1555,7 +1576,7 @@ QUnit.diff = (function() {
|
||||
}
|
||||
}
|
||||
|
||||
for (var i = n.length - 1; i > 0; i--) {
|
||||
for (i = n.length - 1; i > 0; i--) {
|
||||
if (n[i].text != null && n[i - 1].text == null && n[i].row > 0 && o[n[i].row - 1].text == null &&
|
||||
n[i - 1] == o[n[i].row - 1]) {
|
||||
n[i - 1] = {
|
||||
@ -1578,9 +1599,10 @@ QUnit.diff = (function() {
|
||||
return function(o, n) {
|
||||
o = o.replace(/\s+$/, '');
|
||||
n = n.replace(/\s+$/, '');
|
||||
var out = diff(o == "" ? [] : o.split(/\s+/), n == "" ? [] : n.split(/\s+/));
|
||||
var out = diff(o === "" ? [] : o.split(/\s+/), n === "" ? [] : n.split(/\s+/));
|
||||
|
||||
var str = "";
|
||||
var i;
|
||||
|
||||
var oSpace = o.match(/\s+/g);
|
||||
if (oSpace == null) {
|
||||
@ -1597,8 +1619,8 @@ QUnit.diff = (function() {
|
||||
nSpace.push(" ");
|
||||
}
|
||||
|
||||
if (out.n.length == 0) {
|
||||
for (var i = 0; i < out.o.length; i++) {
|
||||
if (out.n.length === 0) {
|
||||
for (i = 0; i < out.o.length; i++) {
|
||||
str += '<del>' + out.o[i] + oSpace[i] + "</del>";
|
||||
}
|
||||
}
|
||||
@ -1609,7 +1631,7 @@ QUnit.diff = (function() {
|
||||
}
|
||||
}
|
||||
|
||||
for (var i = 0; i < out.n.length; i++) {
|
||||
for (i = 0; i < out.n.length; i++) {
|
||||
if (out.n[i].text == null) {
|
||||
str += '<ins>' + out.n[i] + nSpace[i] + "</ins>";
|
||||
}
|
||||
@ -1626,7 +1648,12 @@ QUnit.diff = (function() {
|
||||
|
||||
return str;
|
||||
};
|
||||
})();
|
||||
}());
|
||||
|
||||
// for CommonJS enviroments, export everything
|
||||
if ( typeof exports !== "undefined" || typeof require !== "undefined" ) {
|
||||
extend(exports, QUnit);
|
||||
}
|
||||
|
||||
// get at whatever the global object is, like window in browsers
|
||||
})( (function() {return this}).call() );
|
||||
}( (function() {return this;}.call()) ));
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jquery.simulate - simulate browser mouse and keyboard events
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
72
tests/unit/all-active.html
Normal file
72
tests/unit/all-active.html
Normal file
@ -0,0 +1,72 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>jQuery UI Test Suite</title>
|
||||
|
||||
<script src="../../jquery-1.7.1.js"></script>
|
||||
|
||||
<link rel="stylesheet" href="../../external/qunit.css">
|
||||
<link rel="stylesheet" href="subsuiteRunner.css">
|
||||
<script src="../../external/qunit.js"></script>
|
||||
<script src="subsuiteRunner.js"></script>
|
||||
|
||||
<script>
|
||||
(function() {
|
||||
|
||||
var params = [],
|
||||
suites = [
|
||||
"accordion/accordion.html",
|
||||
"accordion/accordion_deprecated.html",
|
||||
"autocomplete/autocomplete.html",
|
||||
"button/button.html",
|
||||
"core/core.html",
|
||||
//"datepicker/datepicker.html",
|
||||
//"dialog/dialog.html",
|
||||
//"draggable/draggable.html",
|
||||
//"droppable/droppable.html",
|
||||
"effects/effects.html",
|
||||
"menu/menu.html",
|
||||
"position/position.html",
|
||||
"position/position_deprecated.html",
|
||||
"progressbar/progressbar.html",
|
||||
//"resizable/resizable.html",
|
||||
//"selectable/selectable.html",
|
||||
//"slider/slider.html",
|
||||
//"sortable/sortable.html",
|
||||
"spinner/spinner.html",
|
||||
"tabs/tabs.html",
|
||||
"tabs/tabs_deprecated.html",
|
||||
"tooltip/tooltip.html",
|
||||
"widget/widget.html"
|
||||
];
|
||||
|
||||
$.each( QUnit.urlParams, function( key, value ) {
|
||||
if ( key === "filter" ) {
|
||||
return;
|
||||
}
|
||||
params.push( encodeURIComponent( key ) + "=" + encodeURIComponent( value ) );
|
||||
});
|
||||
if ( params.length ) {
|
||||
params = "?" + params.join( "&" );
|
||||
suites = $.map( suites, function( suite ) {
|
||||
return suite + params;
|
||||
});
|
||||
}
|
||||
QUnit.testSuites( suites );
|
||||
|
||||
}());
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1 id="qunit-header">jQuery UI Test Suite</h1>
|
||||
<h2 id="qunit-banner"></h2>
|
||||
<div id="qunit-testrunner-toolbar"></div>
|
||||
<h2 id="qunit-userAgent"></h2>
|
||||
<ol id="qunit-tests"></ol>
|
||||
<div id="qunit-fixture">
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -61,6 +61,7 @@ test( "aria-controls", function() {
|
||||
|
||||
test( "accessibility", function() {
|
||||
// TODO: add tests
|
||||
expect( 0 );
|
||||
});
|
||||
|
||||
test( "#3627 - Ajax tab with url containing a fragment identifier fails to load", function() {
|
||||
|
@ -21,6 +21,7 @@ test( "markup structure", function() {
|
||||
|
||||
test( "accessibility", function() {
|
||||
// TODO: add tests
|
||||
expect( 0 );
|
||||
});
|
||||
|
||||
}( jQuery ) );
|
||||
|
@ -32,28 +32,28 @@ test( "element normalization", function() {
|
||||
// workaround for core ticket #8381
|
||||
this.element.appendTo( "#qunit-fixture" );
|
||||
ok( this.element.is( "div" ), "generated div" );
|
||||
deepEqual( this.element.data( "testWidget" ), this, "intance stored in .data()" );
|
||||
deepEqual( this.element.data( "ui-testWidget" ), this, "instance stored in .data()" );
|
||||
};
|
||||
$.ui.testWidget();
|
||||
|
||||
$.ui.testWidget.prototype.defaultElement = "<span data-test='pass'></span>";
|
||||
$.ui.testWidget.prototype._create = function() {
|
||||
ok( this.element.is( "span[data-test=pass]" ), "generated span with properties" );
|
||||
deepEqual( this.element.data( "testWidget" ), this, "instace stored in .data()" );
|
||||
deepEqual( this.element.data( "ui-testWidget" ), this, "instace stored in .data()" );
|
||||
};
|
||||
$.ui.testWidget();
|
||||
|
||||
elem = $( "<input>" );
|
||||
$.ui.testWidget.prototype._create = function() {
|
||||
deepEqual( this.element[ 0 ], elem[ 0 ], "from element" );
|
||||
deepEqual( elem.data( "testWidget" ), this, "instace stored in .data()" );
|
||||
deepEqual( elem.data( "ui-testWidget" ), this, "instace stored in .data()" );
|
||||
};
|
||||
$.ui.testWidget( {}, elem[ 0 ] );
|
||||
|
||||
elem = $( "<div>" );
|
||||
$.ui.testWidget.prototype._create = function() {
|
||||
deepEqual( this.element[ 0 ], elem[ 0 ], "from jQuery object" );
|
||||
deepEqual( elem.data( "testWidget" ), this, "instace stored in .data()" );
|
||||
deepEqual( elem.data( "ui-testWidget" ), this, "instace stored in .data()" );
|
||||
};
|
||||
$.ui.testWidget( {}, elem );
|
||||
|
||||
@ -61,7 +61,7 @@ test( "element normalization", function() {
|
||||
.appendTo( "#qunit-fixture" );
|
||||
$.ui.testWidget.prototype._create = function() {
|
||||
deepEqual( this.element[ 0 ], elem[ 0 ], "from selector" );
|
||||
deepEqual( elem.data( "testWidget" ), this, "instace stored in .data()" );
|
||||
deepEqual( elem.data( "ui-testWidget" ), this, "instace stored in .data()" );
|
||||
};
|
||||
$.ui.testWidget( {}, "#element-normalization-selector" );
|
||||
|
||||
@ -73,8 +73,16 @@ test( "element normalization", function() {
|
||||
$.ui.testWidget();
|
||||
});
|
||||
|
||||
test( "custom selector expression", function() {
|
||||
var elem = $( "<div>" ).appendTo( "#qunit-fixture" );
|
||||
$.widget( "ui.testWidget", {} );
|
||||
elem.testWidget();
|
||||
deepEqual( $( ":ui-testWidget" )[0], elem[0] );
|
||||
elem.testWidget( "destroy" );
|
||||
});
|
||||
|
||||
test( "jQuery usage", function() {
|
||||
expect( 13 );
|
||||
expect( 16 );
|
||||
|
||||
var shouldCreate = false;
|
||||
|
||||
@ -112,12 +120,18 @@ test( "jQuery usage", function() {
|
||||
.testWidget();
|
||||
shouldCreate = false;
|
||||
|
||||
var instance = elem.data( "testWidget" );
|
||||
var instance = elem.data( "ui-testWidget" );
|
||||
equal( typeof instance, "object", "instance stored in .data(pluginName)" );
|
||||
equal( instance.element[0], elem[0], "element stored on widget" );
|
||||
var ret = elem.testWidget( "methodWithParams", "value1", "value2" );
|
||||
equal( ret, elem, "jQuery object returned from method call" );
|
||||
|
||||
// 1.9 BC for #7810
|
||||
// TODO remove
|
||||
var bcInstance = elem.data("testWidget");
|
||||
equal( typeof bcInstance, "object", "instance stored in .data(pluginName)" );
|
||||
equal( bcInstance.element[0], elem[0], "element stored on widget" );
|
||||
|
||||
ret = elem.testWidget( "getterSetterMethod" );
|
||||
equal( ret, 5, "getter/setter can act as getter" );
|
||||
ret = elem.testWidget( "getterSetterMethod", 30 );
|
||||
@ -126,6 +140,9 @@ test( "jQuery usage", function() {
|
||||
ret = elem.testWidget( "jQueryObject" );
|
||||
equal( ret[ 0 ], document.body, "returned jQuery object" );
|
||||
equal( ret.end(), elem, "stack preserved" );
|
||||
|
||||
elem.testWidget( "destroy" );
|
||||
equal( elem.data( "ui-testWidget" ), null );
|
||||
});
|
||||
|
||||
test( "direct usage", function() {
|
||||
@ -160,7 +177,7 @@ test( "direct usage", function() {
|
||||
var instance = new $.ui.testWidget( {}, elem );
|
||||
shouldCreate = false;
|
||||
|
||||
equal( $( elem ).data( "testWidget" ), instance,
|
||||
equal( $( elem ).data( "ui-testWidget" ), instance,
|
||||
"instance stored in .data(pluginName)" );
|
||||
equal( instance.element[ 0 ], elem, "element stored on widget" );
|
||||
|
||||
@ -374,7 +391,7 @@ test( "._super()", function() {
|
||||
}
|
||||
});
|
||||
|
||||
instance = $( "<div>" ).testWidget3().data( "testWidget3" );
|
||||
instance = $( "<div>" ).testWidget3().data( "ui-testWidget3" );
|
||||
instance.method( 5 );
|
||||
delete $.ui.testWidget3;
|
||||
delete $.ui.testWidget2;
|
||||
@ -411,7 +428,7 @@ test( "._superApply()", function() {
|
||||
}
|
||||
});
|
||||
|
||||
instance = $( "<div>" ).testWidget3().data( "testWidget3" );
|
||||
instance = $( "<div>" ).testWidget3().data( "ui-testWidget3" );
|
||||
instance.method( 5, 10 );
|
||||
delete $.ui.testWidget3;
|
||||
delete $.ui.testWidget2;
|
||||
@ -521,7 +538,7 @@ test( ".option() - deep option setter", function() {
|
||||
$.widget( "ui.testWidget", {} );
|
||||
var div = $( "<div>" ).testWidget();
|
||||
function deepOption( from, to, msg ) {
|
||||
div.data( "testWidget" ).options.foo = from;
|
||||
div.data( "ui-testWidget" ).options.foo = from;
|
||||
$.ui.testWidget.prototype._setOption = function( key, value ) {
|
||||
deepEqual( key, "foo", msg + ": key" );
|
||||
deepEqual( value, to, msg + ": value" );
|
||||
@ -804,7 +821,7 @@ test( "._trigger() - no event, no ui", function() {
|
||||
deepEqual( ui, {}, "empty ui hash passed" );
|
||||
handlers.push( this );
|
||||
});
|
||||
deepEqual( $( "#widget" ).data( "testWidget" )._trigger( "foo" ), true,
|
||||
deepEqual( $( "#widget" ).data( "ui-testWidget" )._trigger( "foo" ), true,
|
||||
"_trigger returns true when event is not cancelled" );
|
||||
deepEqual( handlers, [
|
||||
$( "#widget" )[ 0 ],
|
||||
@ -832,7 +849,7 @@ test( "._trigger() - cancelled event", function() {
|
||||
ok( true, "event was triggered" );
|
||||
return false;
|
||||
});
|
||||
deepEqual( $( "#widget" ).data( "testWidget" )._trigger( "foo" ), false,
|
||||
deepEqual( $( "#widget" ).data( "ui-testWidget" )._trigger( "foo" ), false,
|
||||
"_trigger returns false when event is cancelled" );
|
||||
});
|
||||
|
||||
@ -846,7 +863,7 @@ test( "._trigger() - cancelled callback", function() {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
deepEqual( $( "#widget" ).data( "testWidget" )._trigger( "foo" ), false,
|
||||
deepEqual( $( "#widget" ).data( "ui-testWidget" )._trigger( "foo" ), false,
|
||||
"_trigger returns false when callback returns false" );
|
||||
});
|
||||
|
||||
|
2
themes/base/jquery.ui.accordion.css
vendored
2
themes/base/jquery.ui.accordion.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Accordion @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.all.css
vendored
2
themes/base/jquery.ui.all.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI CSS Framework @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.autocomplete.css
vendored
2
themes/base/jquery.ui.autocomplete.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Autocomplete @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.base.css
vendored
2
themes/base/jquery.ui.base.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI CSS Framework @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.button.css
vendored
2
themes/base/jquery.ui.button.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Button @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.core.css
vendored
2
themes/base/jquery.ui.core.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI CSS Framework @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.datepicker.css
vendored
2
themes/base/jquery.ui.datepicker.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Datepicker @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.dialog.css
vendored
2
themes/base/jquery.ui.dialog.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Dialog @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.menu.css
vendored
2
themes/base/jquery.ui.menu.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Menu @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.progressbar.css
vendored
2
themes/base/jquery.ui.progressbar.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Progressbar @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.resizable.css
vendored
2
themes/base/jquery.ui.resizable.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Resizable @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.selectable.css
vendored
2
themes/base/jquery.ui.selectable.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Selectable @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.slider.css
vendored
2
themes/base/jquery.ui.slider.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Slider @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.spinner.css
vendored
2
themes/base/jquery.ui.spinner.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Spinner @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.tabs.css
vendored
2
themes/base/jquery.ui.tabs.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Tabs @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.theme.css
vendored
2
themes/base/jquery.ui.theme.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI CSS Framework @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
themes/base/jquery.ui.tooltip.css
vendored
2
themes/base/jquery.ui.tooltip.css
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Tooltip @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.effects.blind.js
vendored
2
ui/jquery.effects.blind.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Effects Blind @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.effects.bounce.js
vendored
2
ui/jquery.effects.bounce.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Effects Bounce @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.effects.clip.js
vendored
2
ui/jquery.effects.clip.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Effects Clip @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
4
ui/jquery.effects.core.js
vendored
4
ui/jquery.effects.core.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Effects @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
@ -159,7 +159,7 @@ var classAnimationActions = [ "add", "remove", "toggle" ],
|
||||
padding: 1
|
||||
},
|
||||
// prefix used for storing data on .data()
|
||||
dataSpace = "ec.storage.";
|
||||
dataSpace = "ui-effects-";
|
||||
|
||||
$.each([ "borderLeftStyle", "borderRightStyle", "borderBottomStyle", "borderTopStyle" ], function( _, prop ) {
|
||||
$.fx.step[ prop ] = function( fx ) {
|
||||
|
2
ui/jquery.effects.drop.js
vendored
2
ui/jquery.effects.drop.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Effects Drop @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.effects.explode.js
vendored
2
ui/jquery.effects.explode.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Effects Explode @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.effects.fade.js
vendored
2
ui/jquery.effects.fade.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Effects Fade @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.effects.fold.js
vendored
2
ui/jquery.effects.fold.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Effects Fold @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.effects.highlight.js
vendored
2
ui/jquery.effects.highlight.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Effects Highlight @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.effects.pulsate.js
vendored
2
ui/jquery.effects.pulsate.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Effects Pulsate @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.effects.scale.js
vendored
2
ui/jquery.effects.scale.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Effects Scale @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.effects.shake.js
vendored
2
ui/jquery.effects.shake.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Effects Shake @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.effects.slide.js
vendored
2
ui/jquery.effects.slide.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Effects Slide @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.effects.transfer.js
vendored
2
ui/jquery.effects.transfer.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Effects Transfer @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
34
ui/jquery.ui.accordion.js
vendored
34
ui/jquery.ui.accordion.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Accordion @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
@ -56,8 +56,7 @@ $.widget( "ui.accordion", {
|
||||
}
|
||||
this.active = this._findActive( options.active )
|
||||
.addClass( "ui-accordion-header-active ui-state-active" )
|
||||
.toggleClass( "ui-corner-all" )
|
||||
.toggleClass( "ui-corner-top" );
|
||||
.toggleClass( "ui-corner-all ui-corner-top" );
|
||||
this.active.next().addClass( "ui-accordion-content-active" );
|
||||
|
||||
this._createIcons();
|
||||
@ -69,6 +68,7 @@ $.widget( "ui.accordion", {
|
||||
|
||||
this.headers
|
||||
.attr( "role", "tab" )
|
||||
// TODO: use _bind()
|
||||
.bind( "keydown.accordion", $.proxy( this, "_keydown" ) )
|
||||
.next()
|
||||
.attr( "role", "tabpanel" );
|
||||
@ -76,6 +76,7 @@ $.widget( "ui.accordion", {
|
||||
this.headers
|
||||
.not( this.active )
|
||||
.attr({
|
||||
// TODO: document support for each of these
|
||||
"aria-expanded": "false",
|
||||
"aria-selected": "false",
|
||||
tabIndex: -1
|
||||
@ -133,20 +134,18 @@ $.widget( "ui.accordion", {
|
||||
// clean up headers
|
||||
this.headers
|
||||
.unbind( ".accordion" )
|
||||
.removeClass( "ui-accordion-header ui-accordion-header-active ui-accordion-disabled ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top" )
|
||||
.removeClass( "ui-accordion-header ui-accordion-header-active ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top" )
|
||||
.removeAttr( "role" )
|
||||
.removeAttr( "aria-expanded" )
|
||||
.removeAttr( "aria-selected" )
|
||||
.removeAttr( "tabIndex" )
|
||||
.find( "a" )
|
||||
.removeAttr( "tabIndex" )
|
||||
.removeAttr( "tabIndex" );
|
||||
this._destroyIcons();
|
||||
|
||||
// clean up content panels
|
||||
var contents = this.headers.next()
|
||||
.css( "display", "" )
|
||||
.removeAttr( "role" )
|
||||
.removeClass( "ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-accordion-disabled ui-state-disabled" );
|
||||
.removeClass( "ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-state-disabled" );
|
||||
if ( this.options.heightStyle !== "content" ) {
|
||||
this.element.css( "height", this.originalHeight );
|
||||
contents.css( "height", "" );
|
||||
@ -162,6 +161,7 @@ $.widget( "ui.accordion", {
|
||||
|
||||
if ( key === "event" ) {
|
||||
if ( this.options.event ) {
|
||||
// TODO: this is incorrect for multiple events (see _setupEvents)
|
||||
this.headers.unbind( this.options.event + ".accordion", this._eventHandler );
|
||||
}
|
||||
this._setupEvents( value );
|
||||
@ -184,12 +184,13 @@ $.widget( "ui.accordion", {
|
||||
// #5332 - opacity doesn't cascade to positioned elements in IE
|
||||
// so we need to add the disabled class to the headers and panels
|
||||
if ( key === "disabled" ) {
|
||||
this.headers.add(this.headers.next())
|
||||
.toggleClass( "ui-accordion-disabled ui-state-disabled", !!value );
|
||||
this.headers.add( this.headers.next() )
|
||||
.toggleClass( "ui-state-disabled", !!value );
|
||||
}
|
||||
},
|
||||
|
||||
_keydown: function( event ) {
|
||||
// TODO: remove disabled check when using _bind()
|
||||
if ( this.options.disabled || event.altKey || event.ctrlKey ) {
|
||||
return;
|
||||
}
|
||||
@ -300,6 +301,7 @@ $.widget( "ui.accordion", {
|
||||
|
||||
_setupEvents: function( event ) {
|
||||
if ( event ) {
|
||||
// TODO: use _bind()
|
||||
this.headers.bind( event.split( " " ).join( ".accordion " ) + ".accordion",
|
||||
$.proxy( this, "_eventHandler" ) );
|
||||
}
|
||||
@ -377,7 +379,7 @@ $.widget( "ui.accordion", {
|
||||
} else {
|
||||
toHide.hide();
|
||||
toShow.show();
|
||||
this._completed( data );
|
||||
this._toggleComplete( data );
|
||||
}
|
||||
|
||||
// TODO assert that the blur and focus triggers are really necessary, remove otherwise
|
||||
@ -405,8 +407,8 @@ $.widget( "ui.accordion", {
|
||||
animate = this.options.animate || {},
|
||||
options = down && animate.down || animate,
|
||||
complete = function() {
|
||||
toShow.removeData( "accordionHeight" );
|
||||
that._completed( data );
|
||||
toShow.removeData( "ui-accordion-height" );
|
||||
that._toggleComplete( data );
|
||||
};
|
||||
|
||||
if ( typeof options === "number" ) {
|
||||
@ -430,7 +432,7 @@ $.widget( "ui.accordion", {
|
||||
toHide.animate( hideProps, duration, easing );
|
||||
toShow
|
||||
.hide()
|
||||
.data( "accordionHeight", {
|
||||
.data( "ui-accordion-height", {
|
||||
total: total,
|
||||
toHide: toHide
|
||||
})
|
||||
@ -438,7 +440,7 @@ $.widget( "ui.accordion", {
|
||||
duration, easing, complete );
|
||||
},
|
||||
|
||||
_completed: function( data ) {
|
||||
_toggleComplete: function( data ) {
|
||||
var toShow = data.newContent,
|
||||
toHide = data.oldContent;
|
||||
|
||||
@ -455,7 +457,7 @@ $.widget( "ui.accordion", {
|
||||
|
||||
$.fx.step.accordionHeight = function( fx ) {
|
||||
var elem = $( fx.elem ),
|
||||
data = elem.data( "accordionHeight" );
|
||||
data = elem.data( "ui-accordion-height" );
|
||||
elem.height( data.total - elem.outerHeight() - data.toHide.outerHeight() + elem.height() );
|
||||
};
|
||||
var hideProps = {},
|
||||
|
19
ui/jquery.ui.autocomplete.js
vendored
19
ui/jquery.ui.autocomplete.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Autocomplete @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
@ -225,7 +225,9 @@ $.widget( "ui.autocomplete", {
|
||||
// custom key handling for now
|
||||
input: $(),
|
||||
focus: function( event, ui ) {
|
||||
var item = ui.item.data( "item.autocomplete" );
|
||||
// back compat for _renderItem using item.autocomplete, via #7810
|
||||
// TODO remove the fallback, see #8156
|
||||
var item = ui.item.data( "ui-autocomplete-item" ) || ui.item.data( "item.autocomplete" );
|
||||
if ( false !== self._trigger( "focus", event, { item: item } ) ) {
|
||||
// use value to match what will end up in the input, if it was a key event
|
||||
if ( /^key/.test(event.originalEvent.type) ) {
|
||||
@ -234,7 +236,9 @@ $.widget( "ui.autocomplete", {
|
||||
}
|
||||
},
|
||||
select: function( event, ui ) {
|
||||
var item = ui.item.data( "item.autocomplete" ),
|
||||
// back compat for _renderItem using item.autocomplete, via #7810
|
||||
// TODO remove the fallback, see #8156
|
||||
var item = ui.item.data( "ui-autocomplete-item" ) || ui.item.data( "item.autocomplete" );
|
||||
previous = self.previous;
|
||||
|
||||
// only trigger when focus was lost (click on menu)
|
||||
@ -470,13 +474,16 @@ $.widget( "ui.autocomplete", {
|
||||
_renderMenu: function( ul, items ) {
|
||||
var self = this;
|
||||
$.each( items, function( index, item ) {
|
||||
self._renderItem( ul, item );
|
||||
self._renderItemData( ul, item );
|
||||
});
|
||||
},
|
||||
|
||||
_renderItem: function( ul, item) {
|
||||
_renderItemData: function( ul, item ) {
|
||||
return this._renderItem( ul, item ).data( "ui-autocomplete-item", item );
|
||||
},
|
||||
|
||||
_renderItem: function( ul, item ) {
|
||||
return $( "<li></li>" )
|
||||
.data( "item.autocomplete", item )
|
||||
.append( $( "<a></a>" ).text( item.label ) )
|
||||
.appendTo( ul );
|
||||
},
|
||||
|
2
ui/jquery.ui.button.js
vendored
2
ui/jquery.ui.button.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Button @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.ui.core.js
vendored
2
ui/jquery.ui.core.js
vendored
@ -1,7 +1,7 @@
|
||||
/*!
|
||||
* jQuery UI @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.ui.datepicker.js
vendored
2
ui/jquery.ui.datepicker.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Datepicker @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.ui.dialog.js
vendored
2
ui/jquery.ui.dialog.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Dialog @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.ui.draggable.js
vendored
2
ui/jquery.ui.draggable.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Draggable @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.ui.droppable.js
vendored
2
ui/jquery.ui.droppable.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Droppable @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.ui.menu.js
vendored
2
ui/jquery.ui.menu.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Menu @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.ui.mouse.js
vendored
2
ui/jquery.ui.mouse.js
vendored
@ -1,7 +1,7 @@
|
||||
/*!
|
||||
* jQuery UI Mouse @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.ui.position.js
vendored
2
ui/jquery.ui.position.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Position @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.ui.progressbar.js
vendored
2
ui/jquery.ui.progressbar.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Progressbar @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
6
ui/jquery.ui.resizable.js
vendored
6
ui/jquery.ui.resizable.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Resizable @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
@ -688,13 +688,13 @@ $.ui.plugin.add("resizable", "containment", {
|
||||
|
||||
if (cp.left < (self._helper ? co.left : 0)) {
|
||||
self.size.width = self.size.width + (self._helper ? (self.position.left - co.left) : (self.position.left - cop.left));
|
||||
if (pRatio) self.size.height = self.size.width / o.aspectRatio;
|
||||
if (pRatio) self.size.height = self.size.width / self.aspectRatio;
|
||||
self.position.left = o.helper ? co.left : 0;
|
||||
}
|
||||
|
||||
if (cp.top < (self._helper ? co.top : 0)) {
|
||||
self.size.height = self.size.height + (self._helper ? (self.position.top - co.top) : self.position.top);
|
||||
if (pRatio) self.size.width = self.size.height * o.aspectRatio;
|
||||
if (pRatio) self.size.width = self.size.height * self.aspectRatio;
|
||||
self.position.top = self._helper ? co.top : 0;
|
||||
}
|
||||
|
||||
|
2
ui/jquery.ui.selectable.js
vendored
2
ui/jquery.ui.selectable.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Selectable @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
8
ui/jquery.ui.slider.js
vendored
8
ui/jquery.ui.slider.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Slider @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
@ -110,12 +110,12 @@ $.widget( "ui.slider", $.ui.mouse, {
|
||||
});
|
||||
|
||||
this.handles.each(function( i ) {
|
||||
$( this ).data( "index.ui-slider-handle", i );
|
||||
$( this ).data( "ui-slider-handle-index", i );
|
||||
});
|
||||
|
||||
this.handles
|
||||
.keydown(function( event ) {
|
||||
var index = $( this ).data( "index.ui-slider-handle" ),
|
||||
var index = $( this ).data( "ui-slider-handle-index" ),
|
||||
allowed,
|
||||
curVal,
|
||||
newVal,
|
||||
@ -185,7 +185,7 @@ $.widget( "ui.slider", $.ui.mouse, {
|
||||
self._slide( event, index, newVal );
|
||||
})
|
||||
.keyup(function( event ) {
|
||||
var index = $( this ).data( "index.ui-slider-handle" );
|
||||
var index = $( this ).data( "ui-slider-handle-index" );
|
||||
|
||||
if ( self._keySliding ) {
|
||||
self._keySliding = false;
|
||||
|
2
ui/jquery.ui.sortable.js
vendored
2
ui/jquery.ui.sortable.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Sortable @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
2
ui/jquery.ui.spinner.js
vendored
2
ui/jquery.ui.spinner.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Spinner @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
|
10
ui/jquery.ui.tabs.js
vendored
10
ui/jquery.ui.tabs.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Tabs @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
@ -257,7 +257,7 @@ $.widget( "ui.tabs", {
|
||||
return $( "<div></div>" )
|
||||
.attr( "id", id )
|
||||
.addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" )
|
||||
.data( "destroy.tabs", true );
|
||||
.data( "ui-tabs-destroy", true );
|
||||
},
|
||||
|
||||
_setupDisabled: function( disabled ) {
|
||||
@ -457,7 +457,7 @@ $.widget( "ui.tabs", {
|
||||
.removeData( "load.tabs" );
|
||||
|
||||
this.lis.unbind( ".tabs" ).add( this.panels ).each(function() {
|
||||
if ( $.data( this, "destroy.tabs" ) ) {
|
||||
if ( $.data( this, "ui-tabs-destroy" ) ) {
|
||||
$( this ).remove();
|
||||
} else {
|
||||
$( this ).removeClass([
|
||||
@ -755,7 +755,7 @@ if ( $.uiBackCompat !== false ) {
|
||||
url.replace( "#", "" ) :
|
||||
this._tabId( li.find( "a" )[ 0 ] );
|
||||
|
||||
li.addClass( "ui-state-default ui-corner-top" ).data( "destroy.tabs", true );
|
||||
li.addClass( "ui-state-default ui-corner-top" ).data( "ui-tabs-destroy", true );
|
||||
li.find( "a" ).attr( "aria-controls", id );
|
||||
|
||||
var doInsertAfter = index >= this.lis.length;
|
||||
@ -855,7 +855,7 @@ if ( $.uiBackCompat !== false ) {
|
||||
return $( this.options.panelTemplate )
|
||||
.attr( "id", id )
|
||||
.addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" )
|
||||
.data( "destroy.tabs", true );
|
||||
.data( "ui-tabs-destroy", true );
|
||||
}
|
||||
});
|
||||
|
||||
|
16
ui/jquery.ui.tooltip.js
vendored
16
ui/jquery.ui.tooltip.js
vendored
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* jQuery UI Tooltip @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
@ -72,7 +72,7 @@ $.widget( "ui.tooltip", {
|
||||
var element = $( this );
|
||||
if ( element.is( "[title]" ) ) {
|
||||
element
|
||||
.data( "tooltip-title", element.attr( "title" ) )
|
||||
.data( "ui-tooltip-title", element.attr( "title" ) )
|
||||
.attr( "title", "" );
|
||||
}
|
||||
});
|
||||
@ -82,8 +82,8 @@ $.widget( "ui.tooltip", {
|
||||
// restore title attributes
|
||||
this.element.find( this.options.items ).andSelf().each(function() {
|
||||
var element = $( this );
|
||||
if ( element.data( "tooltip-title" ) ) {
|
||||
element.attr( "title", element.data( "tooltip-title" ) );
|
||||
if ( element.data( "ui-tooltip-title" ) ) {
|
||||
element.attr( "title", element.data( "ui-tooltip-title" ) );
|
||||
}
|
||||
});
|
||||
},
|
||||
@ -99,8 +99,8 @@ $.widget( "ui.tooltip", {
|
||||
return;
|
||||
}
|
||||
|
||||
if ( !target.data( "tooltip-title" ) ) {
|
||||
target.data( "tooltip-title", target.attr( "title" ) );
|
||||
if ( !target.data( "ui-tooltip-title" ) ) {
|
||||
target.data( "ui-tooltip-title", target.attr( "title" ) );
|
||||
}
|
||||
|
||||
target.data( "tooltip-open", true );
|
||||
@ -180,8 +180,8 @@ $.widget( "ui.tooltip", {
|
||||
}
|
||||
|
||||
// only set title if we had one before (see comment in _open())
|
||||
if ( target.data( "tooltip-title" ) ) {
|
||||
target.attr( "title", target.data( "tooltip-title" ) );
|
||||
if ( target.data( "ui-tooltip-title" ) ) {
|
||||
target.attr( "title", target.data( "ui-tooltip-title" ) );
|
||||
}
|
||||
|
||||
target.removeAttr( "aria-describedby" );
|
||||
|
25
ui/jquery.ui.widget.js
vendored
25
ui/jquery.ui.widget.js
vendored
@ -1,7 +1,7 @@
|
||||
/*!
|
||||
* jQuery UI Widget @VERSION
|
||||
*
|
||||
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
|
||||
* Dual licensed under the MIT or GPL Version 2 licenses.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
@ -36,7 +36,7 @@ $.widget = function( name, base, prototype ) {
|
||||
|
||||
// create selector for plugin
|
||||
$.expr[ ":" ][ fullName ] = function( elem ) {
|
||||
return !!$.data( elem, name );
|
||||
return !!$.data( elem, fullName );
|
||||
};
|
||||
|
||||
$[ namespace ] = $[ namespace ] || {};
|
||||
@ -105,7 +105,9 @@ $.widget = function( name, base, prototype ) {
|
||||
constructor: constructor,
|
||||
namespace: namespace,
|
||||
widgetName: name,
|
||||
widgetBaseClass: fullName
|
||||
// TODO remove widgetBaseClass, see #8155
|
||||
widgetBaseClass: fullName,
|
||||
widgetFullName: fullName
|
||||
});
|
||||
|
||||
// If this widget is being redefined then we need to find all widgets that
|
||||
@ -148,6 +150,7 @@ $.widget.extend = function( target ) {
|
||||
};
|
||||
|
||||
$.widget.bridge = function( name, object ) {
|
||||
var fullName = object.prototype.widgetFullName;
|
||||
$.fn[ name ] = function( options ) {
|
||||
var isMethodCall = typeof options === "string",
|
||||
args = slice.call( arguments, 1 ),
|
||||
@ -160,7 +163,7 @@ $.widget.bridge = function( name, object ) {
|
||||
|
||||
if ( isMethodCall ) {
|
||||
this.each(function() {
|
||||
var instance = $.data( this, name );
|
||||
var instance = $.data( this, fullName );
|
||||
if ( !instance ) {
|
||||
return $.error( "cannot call methods on " + name + " prior to initialization; " +
|
||||
"attempted to call method '" + options + "'" );
|
||||
@ -178,7 +181,7 @@ $.widget.bridge = function( name, object ) {
|
||||
});
|
||||
} else {
|
||||
this.each(function() {
|
||||
var instance = $.data( this, name );
|
||||
var instance = $.data( this, fullName );
|
||||
if ( instance ) {
|
||||
instance.option( options || {} )._init();
|
||||
} else {
|
||||
@ -217,7 +220,10 @@ $.Widget.prototype = {
|
||||
this.focusable = $();
|
||||
|
||||
if ( element !== this ) {
|
||||
// 1.9 BC for #7810
|
||||
// TODO remove dual storage
|
||||
$.data( element, this.widgetName, this );
|
||||
$.data( element, this.widgetFullName, this );
|
||||
this._bind({ remove: "destroy" });
|
||||
this.document = $( element.style ?
|
||||
// element within the document
|
||||
@ -242,12 +248,15 @@ $.Widget.prototype = {
|
||||
// all event bindings should go through this._bind()
|
||||
this.element
|
||||
.unbind( "." + this.widgetName )
|
||||
.removeData( this.widgetName );
|
||||
// 1.9 BC for #7810
|
||||
// TODO remove dual storage
|
||||
.removeData( this.widgetName )
|
||||
.removeData( this.widgetFullName );
|
||||
this.widget()
|
||||
.unbind( "." + this.widgetName )
|
||||
.removeAttr( "aria-disabled" )
|
||||
.removeClass(
|
||||
this.widgetBaseClass + "-disabled " +
|
||||
this.widgetFullName + "-disabled " +
|
||||
"ui-state-disabled" );
|
||||
|
||||
// clean up events and states
|
||||
@ -314,7 +323,7 @@ $.Widget.prototype = {
|
||||
|
||||
if ( key === "disabled" ) {
|
||||
this.widget()
|
||||
.toggleClass( this.widgetBaseClass + "-disabled ui-state-disabled", !!value )
|
||||
.toggleClass( this.widgetFullName + "-disabled ui-state-disabled", !!value )
|
||||
.attr( "aria-disabled", value );
|
||||
this.hoverable.removeClass( "ui-state-hover" );
|
||||
this.focusable.removeClass( "ui-state-focus" );
|
||||
|
Loading…
Reference in New Issue
Block a user