Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Docs: Replace `#NUMBER` Trac issue references with `trac-NUMBER` | Michał Gołębiowski-Owczarek | 2022-01-04 | 1 | -0/+6 |
| | | | | | | | | | | | | | The GitHub UI treats `#NUMBER` as referring to its own issues which is confusing when in jQuery source it's usually referring to the old deprecated Trac instance at https://bugs.jquery.com. This change replaces all such Trac references with `trac-NUMBER`. A few of the references came with the Sizzle integration and referred to the Sizzle GitHub bug tracker. Those have been replaced with full links instead. A new entry describing issue reference conventions has been added to README. Closes gh-4993 | ||||
* | Docs: update irc to Libera and fix LAMP dead link | fecore1 | 2021-09-05 | 1 | -2/+2 |
| | |||||
* | Build: Rename master to main across the repository | Michał Gołębiowski-Owczarek | 2021-02-05 | 1 | -2/+2 |
| | | | | | | The default branch was updated, this updates the remaining occurrences in code & comments. Closes gh-4838 | ||||
* | Docs: Remove a mention of the event/alias.js module from README | Michał Gołębiowski-Owczarek | 2020-01-27 | 1 | -1/+1 |
| | | | | | | | The file contents now lie in deprecated/event.js so the README reference is no longer correct. Ref gh-4572 Closes gh-4599 | ||||
* | Ajax: Deprecate AJAX event aliases, inline event/alias into deprecated | Michał Gołębiowski-Owczarek | 2020-01-21 | 1 | -3/+2 |
| | | | | | | | | A new `src/deprecated` directory makes it possible to exclude some deprecated APIs from a custom build when their respective "parent" module is excluded without keeping that module outside of the `src/deprecated` directory or the `src/deprecated.js` file. Closes gh-4572 | ||||
* | Build: Create a `grunt custom:slim` alias for the Slim build (#4578) | Michał Gołębiowski-Owczarek | 2020-01-07 | 1 | -0/+5 |
| | | | Closes gh-4578 | ||||
* | Docs: direct users to GitHub docs for cloning the repo | Timmy Willison | 2019-12-16 | 1 | -6/+2 |
| | | | | Ref gh-4556 Close gh-4571 | ||||
* | Docs: Change OS X to macOS in README | Christian Oliff | 2019-12-03 | 1 | -1/+1 |
| | | | | | macOS has been around for long enough to update the naming here. Closes gh-4552 | ||||
* | Docs: Convert link to Homebrew from HTTP to HTTPS | Christian Oliff | 2019-10-07 | 1 | -1/+1 |
| | | | | | `http://brew.sh/` -> `https://brew.sh/` Closes gh-4501 | ||||
* | Selector: Inline Sizzle into the selector module | Michał Gołębiowski-Owczarek | 2019-07-29 | 1 | -7/+1 |
| | | | | | | | | | | | | | | | | | | This commit removes Sizzle from jQuery, inlining its code & removing obsolete workarounds where applicable. The selector-native module has been removed. Further work on the selector module may decrease the size enough that it will no longer be necessary. If it turns out it's still useful, we'll reinstate it but the code will look different anyway as we'll want to share as much code as possible with the existing selector module. The Sizzle AUTHORS.txt file has been merged with the jQuery one - people are sorted by their first contributions to either of the two repositories. The commit reduces the gzipped jQuery size by 1460 bytes compared to master. Closes gh-4395 | ||||
* | Event: Stop shimming focusin & focusout events | Michał Gołębiowski-Owczarek | 2019-04-29 | 1 | -2/+1 |
| | | | | | | | | | | | Latest versions of all browsers now implement focusin & focusout natively and they all converged on a common event order so it doesn't make much sense for us to normalize it to a different order anymore. Note that it means we no longer guarantee that focusin fires before focus and focusout before blur. Fixes gh-4300 Closes gh-4362 | ||||
* | Update README.md | Timmy Willison | 2019-04-02 | 1 | -1/+1 |
| | |||||
* | Docs: add gitter badge to README.md | Timmy Willison | 2018-07-27 | 1 | -0/+2 |
| | | | Close gh-4138 | ||||
* | README: Add FOSSA license scan status badge | Kris Borchers | 2018-05-15 | 1 | -0/+2 |
| | |||||
* | Tests: Add support for running unit tests via grunt with karma | Timo Tijhof | 2017-12-18 | 1 | -5/+5 |
| | | | | | | | | | | | | | - Update QUnit to 1.23.1 - Remove unused dl#dl from test/index.html - Remove unused map#imgmap from test/index.html - Ensure all urls to data use baseURI - Add the 'grunt karma:main' task - customContextFile & customDebugFile - Add 'npm run jenkins' script Close gh-3744 Fixes gh-1999 | ||||
* | Tests: Refactor testIframe() to make it DRYer and more consistent | Dave Methvin | 2016-04-11 | 1 | -11/+19 |
| | | | | | Ref gh-3040 Closes gh-3049 | ||||
* | Tests: Make iframe tests wait after checking isReady | Dave Methvin | 2016-04-11 | 1 | -20/+13 |
| | | | | Ref gh-3040 | ||||
* | Docs: use https where possible | Bernhard M. Wiedemann | 2016-01-27 | 1 | -1/+1 |
| | | | | Close gh-2875 | ||||
* | Docs: remove compat references | Timmy Willison | 2016-01-14 | 1 | -4/+2 |
| | |||||
* | Docs: Updated links to https where they are supported. | Jon Dufresne | 2016-01-13 | 1 | -10/+10 |
| | | | | Close gh-2746 | ||||
* | Event: Separate trigger/simulate into its own module | Dave Methvin | 2015-11-06 | 1 | -0/+2 |
| | | | | | | | | Fixes gh-1864 Closes gh-2692 This also pulls the focusin/out special event into its own module, since that depends on simulate(). NB: The ajax module triggers events pretty heavily. | ||||
* | CSS: Make show/hide/toggle methods a module | Dave Methvin | 2015-10-18 | 1 | -1/+2 |
| | | | | | | | | Unit test changes some uses of .show() and .hide() to .css( "display", ... ), there was already an implicit assumption in several of the existing tests. Fixes gh-2193 Close gh-2648 | ||||
* | Tests:Docs: Fix various typos | Gary Ye | 2015-10-12 | 1 | -1/+1 |
| | | | | | | | | | | | | * Changes "baar" to "bar" when used with "foo" in readme and comments of js files * mousenter -> mouseenter Thanks @garysye, @KimTaehee Closes gh-2613 Closes gh-2601 | ||||
* | Docs: remove redundant instruction from the readme | Oleg Gaidarenko | 2015-05-29 | 1 | -1/+1 |
| | | | | | | Thanks @elas7 Fixes gh-2359 | ||||
* | Docs: Add info about Sizzle not being excludable on the compat branch | Michał Gołębiowski | 2015-03-30 | 1 | -0/+2 |
| | | | | | | | | Most people just read the README that's displayed to them on GitHub which is the one for the master branch. Let's include the info about Sizzle not being excludable there. Fixes gh-2184 | ||||
* | Docs: Fix README uppercase | Dave Methvin | 2015-01-09 | 1 | -1/+1 |
| | |||||
* | Docs: Clarify custom build instructions | Dave Methvin | 2015-01-06 | 1 | -3/+3 |
| | | | | Closes gh-1854 | ||||
* | Misc: Mac OS is now OS X, thanks @xfq | Dave Methvin | 2015-01-06 | 1 | -1/+1 |
| | | | | Closes gh-1970 | ||||
* | README: update the Homebrew site address | Michał Gołębiowski | 2015-01-03 | 1 | -1/+1 |
| | | | | | | Thanks @xfq Closes gh-1971 | ||||
* | README: various text fixes | Oleg Gaidarenko | 2014-12-15 | 1 | -6/+6 |
| | | | | | | | | Thank you @essamjoubori, @bcbcb, @namlede Closes gh-1926 Closes gh-1927 Closes gh-1928 | ||||
* | README: Add selector-native.js link. Thanks @randsonjs! | Dave Methvin | 2014-12-03 | 1 | -1/+1 |
| | | | | Closes gh-1715 | ||||
* | Docs: correct grunt command in README.md | Oleg Gaidarenko | 2014-11-10 | 1 | -1/+1 |
| | | | | Fixes gh-1850 | ||||
* | Misc: Adjust comments & docs to dropping IE<8 in jQuery Compat | Michał Gołębiowski | 2014-11-04 | 1 | -1/+1 |
| | |||||
* | Docs: 1.x-master branch -> compat branch; 2.x branch -> master branch | Timmy Willison | 2014-11-03 | 1 | -2/+2 |
| | |||||
* | README: Update the description of the deprecated module | Michał Gołębiowski | 2014-10-30 | 1 | -1/+1 |
| | | | | .andSelf is now gone. | ||||
* | Readme: Fix minor style issues. Thanks @MightyBranch! | Dave Methvin | 2014-10-06 | 1 | -1/+1 |
| | |||||
* | README: Improve build instructions | Oleg Gaidarenko | 2014-09-26 | 1 | -4/+3 |
| | | | | | | Thanks @NickStefan Closes gh-1663 | ||||
* | Readme: Fix punctuation in tile | upisfree | 2014-07-12 | 1 | -1/+1 |
| | | | | Closes gh-1607 | ||||
* | Readme: Fix subsection titles and grammar, thanks @robgraeber | Dave Methvin | 2014-03-16 | 1 | -6/+6 |
| | | | | Fixes gh-1540 | ||||
* | Readme: updating QUnit information | Leonardo Balter | 2014-03-13 | 1 | -1/+1 |
| | | | | | | updates QUnit reference site and method naming. Closes gh-1493 | ||||
* | Docs: Change raises to throws in README test assertions | Michał Gołębiowski | 2014-02-05 | 1 | -1/+1 |
| | |||||
* | README: Add jQuery environment notes | Timmy Willison | 2014-01-06 | 1 | -0/+7 |
| | |||||
* | Doc: Update links and simplify build instructions | Oleg | 2013-12-31 | 1 | -6/+6 |
| | |||||
* | Build: add build option for setting the AMD name. | Timmy Willison | 2013-12-19 | 1 | -3/+19 |
| | | | | Fixes #14016. | ||||
* | Build: Add the ability to remove global exposure. | Timmy Willison | 2013-12-19 | 1 | -0/+1 |
| | | | | Ref #14016 | ||||
* | Readme: Fix typo, thanks @tcort | Dave Methvin | 2013-12-18 | 1 | -1/+1 |
| | |||||
* | Use grunt and bower packages as local dependencies. Close gh-1433. | Timmy Willison | 2013-11-14 | 1 | -20/+18 |
| | |||||
* | No ticket: Correct typo in README section "rebasing". Close gh-1398. | Dominik D. Geyer | 2013-10-11 | 1 | -1/+1 |
| | |||||
* | Fix #10814. Make support tests lazy and broken out to components. | Michał Gołębiowski | 2013-09-06 | 1 | -2/+1 |
| | |||||
* | Specify support as a dependency wherever it is used. Optimize module order ↵ | Timmy Willison | 2013-08-15 | 1 | -1/+1 |
| | | | | to save 15 bytes. |