Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Manipulation: Use textarea for missing IE defaultValue check | Dave Methvin | 2014-01-23 | 1 | -8/+5 |
| | | | | | | | | | | IE11 fixed the checkbox defaultValue issue but not textarea. Rather than creating a new detect name I'm reusing the old one to protect anyone who is unwisely using this externally. Re-fixing the defaultValue when it doesn't need to be done is not a problem, so leave that code for IE11. Fixes #14716 Closes gh-1495 | ||||
* | Traversing: Check all pairwise element combinations for .find( els ) | Richard Gibson | 2014-01-17 | 1 | -4/+3 |
| | | | | | Ref b8d0d54a3c4960794a1b492957abeb56eddd1e48 Fixes #14701 | ||||
* | Attrs: Remove outdated valHook for option element | Oleg | 2014-01-16 | 1 | -8/+0 |
| | | | | | | | This hook was relevant for BlackBerry 4.7 which is no longer supported. But this code path now raises error in IE10-11 (#14686) in 1.x-master branch. So to just to be safe, also add test for IE issue to this branch too. | ||||
* | Sizzle: update committed dependencies | Timmy Willison | 2014-01-13 | 5 | -23/+25 |
| | |||||
* | Intro: Pass window to intro if available, for browserify | Forbes Lindesay | 2014-01-09 | 1 | -2/+2 |
| | | | | Closes gh-1476 | ||||
* | Build: Happy New Year! Thanks @marlonlandaverde | Dave Methvin | 2014-01-09 | 1 | -1/+1 |
| | |||||
* | Effects: First step() call should match :animated selector | Dave Methvin | 2014-01-07 | 1 | -1/+4 |
| | | | | | Fixes #14623 Closes gh-1473 | ||||
* | traversing: Optimise .add by not using makeArray | Timo Tijhof | 2013-12-30 | 1 | -6/+5 |
| | | | | Closes gh-1430 | ||||
* | exports/global: Do not attach global variables for most CommonJS environments | Timmy Willison | 2013-12-20 | 2 | -5/+8 |
| | | | | | | | For CommonJS environments where the global already has a document, it is expected that if a global is needed, the user can attach the global. Fixes #14645. | ||||
* | Selector: update Sizzle | Richard Gibson | 2013-12-20 | 4 | -15/+21 |
| | | | | Fix #14584 | ||||
* | Build: Add the ability to remove global exposure. | Timmy Willison | 2013-12-19 | 3 | -23/+32 |
| | | | | Ref #14016 | ||||
* | Offset: Fix comment typo, thanks @AurelioDeRosa | Dave Methvin | 2013-12-18 | 1 | -1/+1 |
| | |||||
* | Reduce size by reordering variable declarations | Chris Antaki | 2013-12-16 | 4 | -16/+17 |
| | | | | Close gh-1421 | ||||
* | Revert "Ajax: Fix #14424. Use ActiveX in IE9+ on local files, close gh-1434." | Dave Methvin | 2013-12-15 | 2 | -10/+1 |
| | | | | | | This reverts commit 498e0e6c9bf486a0b1f16b455d65fcbc6c43867e. We can't use the ActiveX XHR because it doesn't support events. | ||||
* | Manage bower dependencies with grunt-bowercopy | Timmy Willison | 2013-12-06 | 11 | -0/+13410 |
| | | | | | | | | | | | | Tracked bower dependencies are located at "src/sizzle" and "test/libs". The source-destination mapping is in the Gruntfile. When updating a bower dependency, update the version in bower.json, run `grunt bower`, and then commit the result. When adding a dependency, update the bowercopy task accordingly. Fixes #14615. Closes gh-1452. | ||||
* | Change window to global in the most outer IIFE parameters. | Michał Gołębiowski | 2013-11-17 | 1 | -5/+5 |
| | | | | | | | In the most outer IIFE it’s not yet known if the global is window or not. Using the window variable to denote the global was misleading in that case, especially that the code didn’t make such assumption, requiring to provide a Web-like window separately. Renaming window to global clears the confusion. | ||||
* | Fixes #14549. Execute the factory immediately when CommonJS is used in the ↵ | Timmy Willison | 2013-11-15 | 1 | -10/+14 |
| | | | | browser. | ||||
* | Ref #14180, let focusin/out work on non-element targets. | Dave Methvin | 2013-11-14 | 1 | -2/+2 |
| | |||||
* | Ajax: Fix #14424. Use ActiveX in IE9+ on local files, close gh-1434. | Dave Methvin | 2013-11-14 | 2 | -1/+10 |
| | | | | | We can't feature detect ActiveX in IE11, but we can just call it and catch whatever error occurs, then try normal XHR. | ||||
* | Event: Fix #14544. Remove elem from event handle, close gh-1400. | Ilya Kantor | 2013-11-14 | 1 | -7/+2 |
| | | | | | | | This also reduces memory leaks if the element is removed without cleaning events (e.g with native DOM operations). Not pickable into the 1.x branch because oldIE still needs this. | ||||
* | Fix #14036. Remove user/pass from ajaxLocation. Close gh-1340. | njhamann | 2013-11-13 | 1 | -1/+1 |
| | |||||
* | ajax: Fix #14207. file protocol returns status 0, see #8605. | Dave Methvin | 2013-11-13 | 1 | -2/+2 |
| | |||||
* | Fix #14180. Allow cross-frame use of focusin/out. Close gh-1369. | Dave Methvin | 2013-11-12 | 1 | -7/+17 |
| | |||||
* | Fix #14492: More correct jQuery.parseJSON. Close gh-1419. | Richard Gibson | 2013-11-12 | 1 | -1/+5 |
| | | | | | | | | (cherry picked from commit 60a6178131afec97b68c9a45bc24459f7b8bd905) Conflicts: src/ajax/parseJSON.js | ||||
* | No ticket. Remove the unnecessary guard in addGetHookIf. Close gh-1426. | Michał Gołębiowski | 2013-11-11 | 1 | -9/+1 |
| | | | | | | | | | In 1.x if the support test executes before doc ready, it may not be able to return a result yet. In such a case, we protect ourselves from future breakages, allowing only for the ones before doc ready. Since in 2.x lazy support tests attach test elements to docElem, not body, such a guard is unnecessary. | ||||
* | Fix #14074: element id="nodeName". Close gh-1389. | Richard Gibson | 2013-11-07 | 1 | -2/+2 |
| | | | | | | | | | | | (cherry picked from commit 126d596b56924613687329b7aab4f0cdf4b593b3) Conflicts: src/data.js src/data/accepts.js test/unit/core.js test/unit/data.js | ||||
* | Fix #14190: Remove unnecessary assignment in .closest. Close gh-1411. | Marian Sollmann | 2013-11-06 | 1 | -2/+2 |
| | | | | | | | | (cherry picked from commit 346b031af9e3b315ef351a9cc7fee56f930cf346) Conflicts: src/traversing.js | ||||
* | Fix #14101: $().data() should be undefined, not null | Corey Frang | 2013-11-06 | 1 | -2/+1 |
| | |||||
* | No ticket: Reduce size by reordering variable declarations. Close gh-1416. | Chris Antaki | 2013-11-05 | 1 | -5/+5 |
| | |||||
* | Fix #11809: Update text without creating DOM nodes. Close gh-1412. | Chris Antaki | 2013-11-05 | 1 | -1/+5 |
| | |||||
* | No ticket: Update support comment to match convention | Richard Gibson | 2013-11-04 | 1 | -2/+2 |
| | |||||
* | No ticket: Small ajax/xhr size optimizations | Richard Gibson | 2013-10-28 | 1 | -6/+19 |
| | |||||
* | Fix #14379: AJAX requests on unload | Richard Gibson | 2013-10-28 | 1 | -4/+2 |
| | |||||
* | No ticket. Remove useless comment | Oleg | 2013-10-28 | 1 | -1/+0 |
| | |||||
* | Fix #14459: Use jQuery.parseJSON instead of JSON.parse | Richard Gibson | 2013-10-28 | 1 | -1/+1 |
| | |||||
* | Revert "Fix #14180. Allow cross-frame use of focusin/out. Close gh-1369." | Dave Methvin | 2013-10-22 | 1 | -14/+7 |
| | | | | This reverts commit 9b6f0745805941a6d7b7c16c02cf56ab00021c82. | ||||
* | Fix #14180. Allow cross-frame use of focusin/out. Close gh-1369. | Dave Methvin | 2013-10-22 | 1 | -7/+14 |
| | |||||
* | Ref 2263134b: Better identify potential JSON. Close gh-1401. | Ronny Springer | 2013-10-16 | 1 | -1/+1 |
| | |||||
* | Fix #14394: Changing style !important in webkit. Close gh-1385. | Lihan Li | 2013-10-15 | 1 | -0/+3 |
| | |||||
* | No ticket: Small curCSS size optimizations | Richard Gibson | 2013-10-15 | 1 | -4/+8 |
| | |||||
* | Fix #14432: Always return string from .css("z-index"). Close gh-1395. | George Kats | 2013-10-15 | 1 | -1/+3 |
| | |||||
* | Fixes #14450. Remove CommonJS+AMD syntax. | Timmy Willison | 2013-10-15 | 6 | -97/+92 |
| | |||||
* | Fix some code style inconsistencies | Oleg | 2013-10-07 | 8 | -13/+10 |
| | |||||
* | Fix #13993. Save result of native inline handlers. Close gh-1368. | Dave Methvin | 2013-10-06 | 1 | -2/+5 |
| | |||||
* | No ticket: Compress core and data modules | Richard Gibson | 2013-09-28 | 2 | -48/+48 |
| | | | | | | | | | (cherry picked from commit b31bd4c05d87660352a3f7d3081146e332440d99) Conflicts: src/core.js src/data.js | ||||
* | No ticket: Fix XHTML regression. Close gh-1375. | Anthony Ryan | 2013-09-23 | 1 | -1/+1 |
| | |||||
* | core: Fix cut off comment in jQuery.map from c72371f714. Close gh-1379. | Timo Tijhof | 2013-09-23 | 1 | -1/+1 |
| | |||||
* | Fix #14290. Don't throw if text node is appended to table. Close gh-1371. | Dave Methvin | 2013-09-19 | 1 | -1/+1 |
| | |||||
* | Fix #14282. Don't fondle getPreventDefault if preventDefault exists. Close ↵ | Dave Methvin | 2013-09-19 | 1 | -3/+4 |
| | | | | gh-1365. | ||||
* | Fix #12723 and simplification and optmization of defaultDisplay helper | Oleg | 2013-09-17 | 1 | -9/+20 |
| |