Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Core: restore enumeration behavior in isPlainObject | Timmy Willison | 2016-03-07 | 1 | -2/+14 | |
| | | | | | Fixes gh-2968 Close gh-2970 | |||||
* | Core: Deprecate jQuery.parseJSON | Michał Gołębiowski | 2016-03-02 | 1 | -87/+0 | |
| | | | | | Fixes gh-2800 Closes gh-2948 | |||||
* | Tests: fix typos | William Robinet | 2016-02-17 | 1 | -1/+1 | |
| | | | | Closes gh-2927 | |||||
* | Core: Update isNumeric tests for pre-ES2015 safety | Richard Gibson | 2016-01-24 | 1 | -24/+20 | |
| | | | | Ref 7103d8ef47e04a4cf373abee0e8bfa9062fd616f | |||||
* | Core: Improve isNumeric logic and test coverage | Steve Mao | 2016-01-24 | 1 | -2/+23 | |
| | | | | | | | | | Also add back accidentally deleted comments about the implementation. Fixes gh-2780 Ref gh-2663 Ref gh-2781 Closes gh-2827 | |||||
* | Docs: remove compat references | Timmy Willison | 2016-01-14 | 1 | -1/+1 | |
| | ||||||
* | Docs: Fix various spelling errors | Josh Soref | 2016-01-13 | 1 | -1/+1 | |
| | | | | Closes gh-2761 | |||||
* | Selector: pass jQuery unit tests with selector-native | Timmy Willison | 2015-11-11 | 1 | -3/+7 | |
| | | | | | | | | | - Ignore certain tests that obviously are not supported - Beefed up the sortOrder, uniqueSort, isXMLDoc, and attr functions Fixes gh-1742 Fixes gh-2048 Close gh-2703 | |||||
* | Core: make isNumeric limited to strings and numbers | Timmy Willison | 2015-10-21 | 1 | -1/+1 | |
| | | | | Fixes gh-2662 | |||||
* | Core: add unit test for isPlainObject(Symbol) | Liza Ramo | 2015-10-18 | 1 | -0/+9 | |
| | | | | | Fixes #2645 Closes #2661 | |||||
* | Core: make isNumeric test work on Symbol | Liza Ramo | 2015-10-17 | 1 | -0/+7 | |
| | | | | | Ref #2645 Closes #2657 | |||||
* | Tests: Account for array-like objects in jQuery.grep | Aurelio De Rosa | 2015-10-13 | 1 | -6/+73 | |
| | | | | Closes gh-2605 | |||||
* | Tests: fix code style issues | Oleg Gaidarenko | 2015-10-13 | 1 | -1/+1 | |
| | | | | Follow-up for 8a734344f2566dab5b8d34ecd79ae81ebd8843c5 | |||||
* | Core: Support Symbol wrapper objects in jQuery.type | Christian Grete | 2015-10-13 | 1 | -0/+13 | |
| | | | | | | | | | In ECMAScript 2015 (ES6), the native typeof operator returns "symbol" for Symbol primitives. As it is possible to wrap symbols using the Object constructor, symbols can be objects as well as any other primitive type in JavaScript and should be determined by jQuery.type. Closes gh-2627 | |||||
* | Tests: Add .extend test for defined accessor properties | Connor Atherton | 2015-10-12 | 1 | -0/+23 | |
| | | | | Closes gh-2615 | |||||
* | Tests: more style corrections | Oleg Gaidarenko | 2015-09-08 | 1 | -1/+1 | |
| | | | | | | Provocated by jscs-dev/node-jscs@2de68c0d8351103bb2a989dc942ab47a391d3546 Closes gh-2578 | |||||
* | Tests: further improvements QUnit 2.0 migration | Oleg Gaidarenko | 2015-09-08 | 1 | -6/+14 | |
| | | | | | | | | * Remove QUnit jshint globals * Extend QUnit.assert methods * Use assert.async instead of start/stop/done Ref b930d14ce64937e9478405eee2828d4da091d2cb | |||||
* | Build: Update jscs and lint files | Oleg Gaidarenko | 2015-09-07 | 1 | -499/+505 | |
| | | | | Fixes gh-2056 | |||||
* | Tests: partially use new qunit interface | Oleg Gaidarenko | 2015-08-16 | 1 | -530/+542 | |
| | | | | | | | | | | | | http://qunitjs.com/upgrade-guide-2.x/ For most of the boring work was used https://github.com/apsdehal/qunit-migrate package However, it can't update local qunit helpers, plus in some places old QUnit.asyncTest signature is still used Fixes gh-2540 | |||||
* | Tests: don't use deprecated argument in test declaration | Oleg Gaidarenko | 2015-07-30 | 1 | -3/+9 | |
| | | | | Closes gh-2507 | |||||
* | Core: .each/.map should accept an undefined/null value | Thomas Tortorini | 2015-07-27 | 1 | -0/+12 | |
| | | | | | Fixes gh-2267 Closes gh-2363 | |||||
* | Build: Acknowledge Android 2.3 is not ES5-compatible | Michał Gołębiowski | 2015-07-20 | 1 | -1/+1 | |
| | | | | | | | | | | | Android 2.3 chokes on unquoted reserved words being used as property names which was making Deferred tests not run. Acknowledge the sad fact that Android 2.3 is not ES5-compliant browser and enable the "es3" option in JSHint config. Fixes gh-2478 Closes gh-2481 | |||||
* | Revert "Offset: allow offset setter to throw for disconnected elements" | Timmy Willison | 2015-06-16 | 1 | -1/+9 | |
| | | | | This reverts commit 0d11c1182f2012cd6eb06ce1e3fa5a495af9bee3. | |||||
* | Core: Make jQuery objects iterable | Michał Gołębiowski | 2015-06-13 | 1 | -0/+20 | |
| | | | | | | | | | | Make iterating over jQuery objects possible using ES 2015 for-of: for ( node of $( "<div id=narwhal>" ) ) { console.log( node.id ); // "narwhal" } Fixes gh-1693 | |||||
* | Offset: allow offset setter to throw for disconnected elements | Timmy Willison | 2015-05-05 | 1 | -9/+1 | |
| | | | | Fixes gh-2114 | |||||
* | Data: do not include digits when camelCasing | Timmy Willison | 2015-05-03 | 1 | -1/+1 | |
| | | | | Fixes gh-1751 | |||||
* | Manipulation: Make an HTML interception point | Richard Gibson | 2015-04-30 | 1 | -8/+4 | |
| | | | | | Fixes gh-1747 Closes gh-2203 | |||||
* | Core: add workaround for iOS JIT error in isArrayLike | Timmy Willison | 2015-04-29 | 1 | -0/+21 | |
| | | | | Fixes gh-2145 | |||||
* | Core: simplify "each" stylesheet iteration test | Oleg Gaidarenko | 2015-02-15 | 1 | -1/+1 | |
| | | | | Closes gh-2089 | |||||
* | Core: Return empty array instead of null for parseHTML("") | Timo Tijhof | 2015-01-19 | 1 | -4/+9 | |
| | | | | | Fixes gh-1997 Close gh-1998 | |||||
* | Core: add support to tag-hyphenated elements | Leonardo Braga | 2015-01-13 | 1 | -0/+13 | |
| | | | | Ref #1987 | |||||
* | Core: Remove deprecated context and selector properties | Dave Methvin | 2015-01-11 | 1 | -44/+1 | |
| | | | | | Fixes gh-1908 Closes gh-2000 | |||||
* | Core: re-introduce createHTMLDocument in parseHTML; Safari 8 left out | Timmy Willison | 2014-12-10 | 1 | -1/+17 | |
| | | | | Close gh-1505 | |||||
* | Core: revert addition of createHTMLDocument. Thanks, Safari 8. | Timmy Willison | 2014-12-09 | 1 | -14/+0 | |
| | | | | | - Safari 8 has issues when the HTML string contains forms. Closing tags are not respected. | |||||
* | Core: remove unnecessary support test for createHTMLDocument | Timmy Willison | 2014-12-09 | 1 | -14/+10 | |
| | ||||||
* | Build: fix tests in AMD mode | Timmy Willison | 2014-12-09 | 1 | -13/+16 | |
| | ||||||
* | Core: use document.implemenation.createHTMLDocument in jQuery.parseHTML | Frederic Hemberger | 2014-12-09 | 1 | -0/+18 | |
| | | | | Close gh-1505 | |||||
* | Core: Throw an error on $("#") rather than returning 0-length collection | Dave Methvin | 2014-12-03 | 1 | -2/+7 | |
| | | | | | | Closes gh-1682 Thanks @goob for the issue report! | |||||
* | Build: Move test to appropriate module | Oleg Gaidarenko | 2014-06-16 | 1 | -6/+0 | |
| | ||||||
* | Ajax: Always use script injection in globalEval | Oleg Gaidarenko | 2014-06-16 | 1 | -0/+13 | |
| | | | | | Fixes #14757 Closes gh-1449 | |||||
* | Tests: Clean up isNumeric tests | Richard Gibson | 2014-06-07 | 1 | -47/+42 | |
| | | | | (cherry picked from commit d05f4bda1cc0b1ef76dce41a53c17f75c105a377) | |||||
* | Core: Work around loss of precision from parseFloat | Richard Gibson | 2014-06-07 | 1 | -1/+2 | |
| | | | | | Fixes #15100 (cherry picked from commit b6e99eb43c35a3cd048c5c56d31c7e871f299a77) | |||||
* | Core: Correct the number of expected tests | Michał Gołębiowski | 2014-05-02 | 1 | -1/+1 | |
| | ||||||
* | Core: Remove repeated test | Liang Peng | 2014-05-02 | 1 | -1/+0 | |
| | | | | Closes gh-1570 | |||||
* | Core: Blacklist the ready test on async-loaded jQuery in iOS7 | Michał Gołębiowski | 2014-03-17 | 1 | -4/+9 | |
| | | | | Fixes #14882 | |||||
* | Core: Do not run window.onready when ready | Dave Methvin | 2014-03-04 | 1 | -0/+7 | |
| | | | | Fixes #14802 | |||||
* | Core: Arrays like [42] should fail .isNumeric() | Dave Methvin | 2014-03-04 | 1 | -1/+3 | |
| | | | | Fixes #14179 | |||||
* | Build: Upgrade QUnit to 1.14.0 | Michał Gołębiowski | 2014-02-05 | 1 | -14/+14 | |
| | ||||||
* | Tests: Avoid use of QUnit.reset() in tests by splitting them | cjqed | 2013-12-23 | 1 | -2/+0 | |
| | | | | | Fix #14040 Close gh-1457 | |||||
* | Fix #14492: More correct jQuery.parseJSON. Close gh-1419. | Richard Gibson | 2013-11-12 | 1 | -6/+69 | |
| | | | | | | | | (cherry picked from commit 60a6178131afec97b68c9a45bc24459f7b8bd905) Conflicts: src/ajax/parseJSON.js |