aboutsummaryrefslogtreecommitdiffstats
path: root/src/event
Commit message (Collapse)AuthorAgeFilesLines
* Build: code style fixes after all those revertsOleg Gaidarenko2015-12-221-2/+2
|
* Revert "Event: remove deprecated event aliases"Oleg Gaidarenko2015-12-221-2/+2
| | | | This reverts commit ef30bdf4f1b361b6f2e99f5b7233b419f95a62f2.
* Event: Move .bind() and .delegate() to deprecatedDave Methvin2015-10-121-18/+0
| | | | | | Cherry-picked from ee0854f85bd686b55757e8854a10480f23c928da Fixes gh-2288 Closes gh-2624
* Build: Update jscs and lint filesOleg Gaidarenko2015-09-073-17/+19
| | | | | Ref 10fdad742a2a6aa9f0e00b3e04fc5264797c53c7 Fixes gh-2056
* Core: Support non-browser environmentsMichał Gołębiowski2015-08-161-1/+2
| | | | | | | | | | | | Fixes gh-2133 Fixes gh-2501 Closes gh-2504 Refs gh-1950 Refs gh-1949 Refs gh-2397 Refs gh-1537 Refs gh-2504 Refs 842958e7aecd0d75a7ee9e2aaec83457701aa2f3
* Event: remove deprecated event aliasesOleg Gaidarenko2015-05-191-2/+2
| | | | | | | (Cherry-picked from 0705be475092aede1eddae01319ec931fb9c65fc) Fixes gh-2286 Closes gh-2287 Ref trac-11733
* Event: provide verbose info for focus(in | out) & rename support propsOleg Gaidarenko2015-05-191-3/+3
| | | | | Ref c074006a69db73a116dc04ec78844468a8cea7d3 Ref gh-2312
* Build: update grunt-jscs-checker and pass with the new rulesTimmy Willison2014-07-172-3/+13
| | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: build/tasks/build.js src/ajax/xhr.js src/attributes/classes.js src/attributes/prop.js src/attributes/val.js src/core/init.js src/core/ready.js src/css.js src/css/curCSS.js src/css/defaultDisplay.js src/data.js src/data/var/dataPriv.js src/data/var/dataUser.js src/dimensions.js src/effects.js src/event.js src/manipulation.js src/offset.js src/queue.js src/selector-native.js test/data/testrunner.js
* Ajax: move ajax event aliases to their own fileTimmy Willison2014-06-021-0/+13
| | | | Fixes #15126
* Fix some code style inconsistenciesOleg2013-11-071-1/+1
|
* Fix #14422 and add more thorough check for CSP violationsOleg2013-11-071-5/+8
| | | | Close gh-1413
* Fix #10814. Fix #14084. Make support tests lazy and broken out to components.Michał Gołębiowski2013-09-061-0/+23
|
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-151-0/+39
| | | | | | | | | | | | | | | | | | | | Conflicts: Gruntfile.js README.md src/ajax.js src/ajax/xhr.js src/attributes.js src/core.js src/css.js src/data.js src/effects.js src/event.js src/manipulation.js src/offset.js src/selector-native.js src/traversing.js test/unit/core.js test/unit/data.js
* Reorganzing the jQuery source (first phase).John Resig2007-09-082-666/+0
|
* Fixed a bug in event - "native" is a reserved word in Safari 2.John Resig2007-09-071-2/+2
|
* Integration of Mike Alsup's excellent form serialization code. The benefits ↵John Resig2007-09-051-1/+1
| | | | | | | | | | | | | | | | | | are as follows: - New method: .serializeArray() This returns an array of name/value pairs representing the contents of a form, or individual input elements. - Enhancement: .serialize() The results are correct now (as opposed to the mess from before), and allows you to serializes forms directly (rather than just the input elements). - Enhancement: .val() This now returns the correct value when dealing wih selects. Additionally, when dealing with multiple selects, it returns an array of values. Based upon Mike's code: http://malsup.com/jquery/form/comp/form.js and test suite: http://malsup.com/jquery/form/comp/test.html
* Removed all inline documentation. The current version of all documentation ↵John Resig2007-09-041-569/+10
| | | | is stored online, on the wiki: http://docs.jquery.com/
* Added namespaced events to bind, unbind, and trigger. This allows you to ↵John Resig2007-09-032-10/+52
| | | | deal with event handlers of a specific "class" (great for plugins).
* Reverted the change that I made in #1320.John Resig2007-09-021-1/+1
|
* Made it so that you can pass in an event object to the trigger data args and ↵John Resig2007-08-302-8/+33
| | | | it'll override the custom event object (this way you can pass in the event object of a mousemove to a drag event trigger, for example).
* Added a new extra fn arg to trigger (so you don't have to simulate the ↵John Resig2007-08-302-9/+46
| | | | trigger yourself). (Bug #1467) Added a new .triggerHandler() method that allows you to NOT trigger native calls AND returns the response from the handlers. (Bug #873 & #1417)
* Made jQuery's internal trigger method return the value from handle. (Bug #1417)John Resig2007-08-281-0/+5
|
* Made it so that the last return value is always returned from handle() ↵John Resig2007-08-281-2/+6
| | | | (unless one of the return values was false, in which case the return value is false). (Bug #1416)
* Only bind .ready() once per instance of jQuery - and only bind if the ↵John Resig2007-08-221-1/+11
| | | | ready() method is actually called (nothing is bound if window/load is used).
* Fixed the case where global events weren't being triggered on window and ↵John Resig2007-08-221-1/+1
| | | | document.
* Fix for a selector speed regression (calling a simple selector many times ↵John Resig2007-08-211-4/+0
| | | | | | | | | | resulted in a significant speed down). This has been fixed by breaking the RegExps out into the global scope. This required that a closure be implemented around the full jQuery script (which is now the case). Some simple changes were made in addition to the RegExp one, allowing for some greater flexibility on our part - and hopefully better compression. Speed results: http://dev.jquery.com/~john/ticket/1351/ vs. http://dev.jquery.com/~john/ticket/1351/113.html vs. http://dev.jquery.com/~john/ticket/1351/112.html
* Fixed two cases where []. was used instead of Array.prototype. (Bug #1427)John Resig2007-08-201-1/+1
|
* Make jQuery work without warnings in strict mode, in Firefox.John Resig2007-08-201-2/+2
|
* Complete overhaul of the Ajax test suite, it's now passing in all browsers. ↵John Resig2007-08-191-28/+7
| | | | | | | | | | In order to achieve this I had to fix a numbe r of bugs in the suite itself, along with other random bugs that popped up. The following bugs were resolved along the wa y: #1236 (.extend() keeps processing when it hits nulls), #1028 (.extend() now works recursively), #1080 ($.get no longer overwrites the data parameter), #1210 (Creating script and link tags now work), and #1463 (jQuery.global has been re-too led to no longer leak memory and slow things down).
* More missing semicolons.John Resig2007-08-071-2/+2
|
* When we disabled triggering of clicks, we also killed off blur and focus, ↵John Resig2007-07-311-1/+1
| | | | this fixes that (bug #1440).
* trigger DOM0 event handlers when doing a trigger (#1363)Brandon Aaron2007-07-212-4/+15
|
* broken test in IEBrandon Aaron2007-07-201-13/+11
|
* Fix for #1402Brandon Aaron2007-07-201-2/+2
|
* Fix for IE firing document ready too soon (Bug #1320).John Resig2007-07-121-1/+1
|
* Tweaked some of the tests, added in events and fx tests.John Resig2007-07-091-10/+5
|
* Did some minor tidying up.John Resig2007-06-301-6/+5
|
* Fix for #1322Brandon Aaron2007-06-291-3/+3
|
* Fix for #1187, #1278 and #1279Brandon Aaron2007-06-211-3/+4
|
* Fix for #1185Brandon Aaron2007-05-311-7/+12
|
* Fix for #923, #1136 and #1233Brandon Aaron2007-05-311-2/+8
|
* Use .one() when doing a .bind() with an "unload" event type (#1242)Brandon Aaron2007-05-311-1/+4
|
* Fix event.which (#1217)Brandon Aaron2007-05-301-46/+37
|
* Clean up in jQuery.event.add for assigning a handler.guidBrandon Aaron2007-05-231-7/+4
|
* fix style, prefix and typo in a few commentsEd Engelhardt2007-05-221-2/+2
|
* Added support for the event object properties relatedTarget, metaKey, which, ↵John Resig2007-05-201-2/+23
| | | | and charCode. Fixes bug #1204.
* Clean up in jQuery.event.fix (#1171)Brandon Aaron2007-05-111-3/+3
|
* Fix for #1186Brandon Aaron2007-05-111-1/+1
|
* Query now throws no warnings under strict mode in Firefox (ticket #922). In ↵John Resig2007-04-291-12/+13
| | | | fixing this, revision [1771] was discovered and reverted (no API changes are being added in at this time), and a couple un-functioning test cases were fixed (array comparisions were being done for objects).
* Fix for #1061Brandon Aaron2007-04-261-1/+3
|