Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revert "Misc: Drop support for older browsers; update support comments" | Michał Gołębiowski | 2015-11-16 | 1 | -1/+3 |
| | | | | This reverts commit 740e190223d19a114d5373758127285d14d6b71e. | ||||
* | Revert "Core: Throw an error on $("#") rather than returning 0-length ↵ | Oleg Gaidarenko | 2015-11-13 | 1 | -2/+1 |
| | | | | | | collection" This reverts commit 80022c81ce4a07a232afd3c580b0977555a2daec. | ||||
* | Release: remove revert artefacts | Oleg Gaidarenko | 2015-11-13 | 1 | -2/+2 |
| | |||||
* | Revert "Core: Remove deprecated context and selector properties" | Oleg Gaidarenko | 2015-11-13 | 1 | -2/+10 |
| | | | | This reverts commit 0ea8c32863af31fb5cfc184e8d513bbae35583e8. | ||||
* | Revert "Core: Return empty array instead of null for parseHTML("")" | Oleg Gaidarenko | 2015-11-13 | 1 | -2/+2 |
| | | | | This reverts commit 4116914dcac32868c2c822366785e3dd2ccc69d4. | ||||
* | Revert "Core: remove custom ready event" | Oleg Gaidarenko | 2015-11-11 | 1 | -0/+7 |
| | | | | This reverts commit c252c5fac2a25869524c2eba2e93d4230e6af25c. | ||||
* | Core: use interactive to evaluate dom ready, barring IE9-10 | Timmy Willison | 2015-10-29 | 1 | -4/+4 |
| | | | | Fixes gh-2100 | ||||
* | Build: Update jscs and lint files | Oleg Gaidarenko | 2015-09-07 | 6 | -34/+47 |
| | | | | Fixes gh-2056 | ||||
* | Core: Don't expose jQuery.access | Michał Gołębiowski | 2015-08-03 | 1 | -1/+1 |
| | | | | | | | jQuery.access was never documented, there is no need to keep it exposed. Fixes gh-2513 Closes gh-2524 | ||||
* | Core: Add a support comment for Safari 8 | Michał Gołębiowski | 2015-07-20 | 1 | -0/+5 |
| | | | | | | | | Related issue: https://bugs.webkit.org/show_bug.cgi?id=137337 Thanks @phistuck! Refs cfe468f29c4cbe1a457d0feb17dec90dcfd7c280 | ||||
* | Core: Switch from modules to just window.setTimeout etc. | Michał Gołębiowski | 2015-06-17 | 1 | -3/+2 |
| | | | | | | Using modules for window.setTimeout etc. made those functions cached and disabled Sinon mocking, making effects tests fail. Just writing window.setTimeout directly is smaller anyway. | ||||
* | Core: Use window.setTimeout & friends instead of global equivalents | Michał Gołębiowski | 2015-06-17 | 1 | -1/+2 |
| | | | | Fixes gh-2177 | ||||
* | Core: remove custom ready event | Timmy Willison | 2015-05-12 | 1 | -7/+0 |
| | | | | | Fixes gh-2264 Close gh-2265 | ||||
* | Manipulation: privatize buildFragment() function | Timmy Willison | 2015-05-05 | 1 | -6/+4 |
| | | | | Fixes gh-2224 | ||||
* | Core: allow init to accept an alternate rootjQuery for migrate's sake | Timmy Willison | 2015-05-04 | 1 | -4/+8 |
| | | | | | | - This will be tested in migrate Fixes gh-2101 | ||||
* | Core:CSS:Event: simplification of native method signatures | Oleg Gaidarenko | 2015-05-03 | 1 | -4/+4 |
| | | | | | | | | | | * Remove third argument from "addEventListener" * Remove third argument from "removeEventListener" * Remove second argument from "getComputedStyle" Ref gh-2047 | ||||
* | Core: Update tested jsdom, drop obsolete workarounds | Michał Gołębiowski | 2015-03-30 | 1 | -8/+3 |
| | | | | | | | | | The latest version supporting Node.js is 3.1.2; some workarounds are not needed for this version. For example, in jsdom 3.1.2 a document created via document.implementation.createHTMLDocument( "" ) has a body. Fixes gh-2153 Closes gh-2154 | ||||
* | Core: Return empty array instead of null for parseHTML("") | Timo Tijhof | 2015-01-19 | 1 | -2/+2 |
| | | | | | Fixes gh-1997 Close gh-1998 | ||||
* | Core: add support to tag-hyphenated elements | Leonardo Braga | 2015-01-13 | 1 | -1/+1 |
| | | | | Ref #1987 | ||||
* | Core: Remove deprecated context and selector properties | Dave Methvin | 2015-01-11 | 1 | -10/+2 |
| | | | | | Fixes gh-1908 Closes gh-2000 | ||||
* | Build: Don't assume the browser environment; smoke test on Node w/ jsdom | Michał Gołębiowski | 2014-12-26 | 4 | -4/+13 |
| | | | | | Fixes gh-1950 Closes gh-1949 | ||||
* | Core: re-introduce createHTMLDocument in parseHTML; Safari 8 left out | Timmy Willison | 2014-12-10 | 2 | -3/+23 |
| | | | | Close gh-1505 | ||||
* | Core: revert addition of createHTMLDocument. Thanks, Safari 8. | Timmy Willison | 2014-12-09 | 1 | -3/+1 |
| | | | | | - Safari 8 has issues when the HTML string contains forms. Closing tags are not respected. | ||||
* | Core: pass empty string to createHTMLDocument to appease IE | Timmy Willison | 2014-12-09 | 1 | -1/+1 |
| | |||||
* | Core: remove unnecessary support test for createHTMLDocument | Timmy Willison | 2014-12-09 | 2 | -13/+2 |
| | |||||
* | Build: fix tests in AMD mode | Timmy Willison | 2014-12-09 | 2 | -1/+5 |
| | |||||
* | Core: use document.implemenation.createHTMLDocument in jQuery.parseHTML | Frederic Hemberger | 2014-12-09 | 2 | -2/+12 |
| | | | | Close gh-1505 | ||||
* | Core: Throw an error on $("#") rather than returning 0-length collection | Dave Methvin | 2014-12-03 | 1 | -1/+2 |
| | | | | | | Closes gh-1682 Thanks @goob for the issue report! | ||||
* | Misc: Drop support for older browsers; update support comments | Michał Gołębiowski | 2014-11-03 | 1 | -3/+1 |
| | | | | | | | | That includes Opera 12.x, Firefox<29, Safari<6.0 and some hacks for old Blackberry. Closes gh-1820 Refs gh-1815 | ||||
* | Core: Drop strundefined variable | Chris Antaki | 2014-09-02 | 1 | -1/+1 |
| | |||||
* | Build: update grunt-jscs-checker and pass with the new rules | Timmy Willison | 2014-07-17 | 3 | -4/+10 |
| | |||||
* | Core: Consistently use local reference to access() | Timo Tijhof | 2014-07-12 | 1 | -1/+1 |
| | | | | | Ref 3b53b75160606610cc8f87404f89fc9e10441c4b Closes gh-1605 | ||||
* | Support: clean up comments and Support notation | Dave Methvin | 2014-06-10 | 2 | -4/+4 |
| | | | | Closes gh-1577 | ||||
* | Core: Do not run window.onready when ready | Dave Methvin | 2014-03-04 | 1 | -2/+3 |
| | | | | Fixes #14802 | ||||
* | Reduce size by reordering variable declarations | Chris Antaki | 2013-12-16 | 1 | -3/+3 |
| | | | | Close gh-1421 | ||||
* | charAt -> string indexing. Close gh-1359. | Mike Sidorov | 2013-09-12 | 1 | -1/+1 |
| | |||||
* | Separate jQuery.fn.init into its own module (for lighter core dependencies ↵ | Timmy Willison | 2013-09-09 | 4 | -1/+129 |
| | | | | across all modules) | ||||
* | All non-var modules should not indent in their AMD wrappers (just for ↵ | Timmy Willison | 2013-09-09 | 2 | -75/+78 |
| | | | | prettier builds). No functionality changes. | ||||
* | Break jQuery.access out into its own module to separate it from core; Adjust ↵ | Timmy Willison | 2013-09-09 | 1 | -0/+58 |
| | | | | CommonJS+AMD build support to include non-var dependencies. Convert modules with more than a few dependencies to use CJS+AMD syntax. | ||||
* | Move parsing methods to their own files (separates manipulation dependency ↵ | Timmy Willison | 2013-09-08 | 1 | -0/+38 |
| | | | | from core) | ||||
* | With all of the ready calls removed internally, ready was never kicked off. ↵ | Timmy Willison | 2013-09-06 | 1 | -0/+3 |
| | | | | Add a call in the ready module to ensure ready is checked. | ||||
* | Fix #10814. Make support tests lazy and broken out to components. | Michał Gołębiowski | 2013-09-06 | 1 | -29/+0 |
| | |||||
* | AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163. | Timmy Willison | 2013-08-15 | 2 | -0/+121 |