Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Event: remove deprecated event aliases | Oleg Gaidarenko | 2015-05-19 | 1 | -2/+2 |
| | | | | | | Fixes gh-2286 Closes gh-2287 Ref trac-11733 | ||||
* | Event: provide verbose comment for focus(in | out) & rename support prop | Oleg Gaidarenko | 2015-05-19 | 1 | -1/+1 |
| | | | | Closes gh-2312 | ||||
* | Build: update grunt-jscs-checker and pass with the new rules | Timmy Willison | 2014-07-17 | 2 | -3/+13 |
| | |||||
* | Ajax: move ajax event aliases to their own file | Timmy Willison | 2014-06-02 | 1 | -0/+13 |
| | | | | Fixes #15126 | ||||
* | Fix #10814. Make support tests lazy and broken out to components. | Michał Gołębiowski | 2013-09-06 | 1 | -0/+9 |
| | |||||
* | AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163. | Timmy Willison | 2013-08-15 | 1 | -0/+39 |
| | |||||
* | Reorganzing the jQuery source (first phase). | John Resig | 2007-09-08 | 2 | -666/+0 |
| | |||||
* | Fixed a bug in event - "native" is a reserved word in Safari 2. | John Resig | 2007-09-07 | 1 | -2/+2 |
| | |||||
* | Integration of Mike Alsup's excellent form serialization code. The benefits ↵ | John Resig | 2007-09-05 | 1 | -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 Resig | 2007-09-04 | 1 | -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 Resig | 2007-09-03 | 2 | -10/+52 |
| | | | | deal with event handlers of a specific "class" (great for plugins). | ||||
* | Reverted the change that I made in #1320. | John Resig | 2007-09-02 | 1 | -1/+1 |
| | |||||
* | Made it so that you can pass in an event object to the trigger data args and ↵ | John Resig | 2007-08-30 | 2 | -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 Resig | 2007-08-30 | 2 | -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 Resig | 2007-08-28 | 1 | -0/+5 |
| | |||||
* | Made it so that the last return value is always returned from handle() ↵ | John Resig | 2007-08-28 | 1 | -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 Resig | 2007-08-22 | 1 | -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 Resig | 2007-08-22 | 1 | -1/+1 |
| | | | | document. | ||||
* | Fix for a selector speed regression (calling a simple selector many times ↵ | John Resig | 2007-08-21 | 1 | -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 Resig | 2007-08-20 | 1 | -1/+1 |
| | |||||
* | Make jQuery work without warnings in strict mode, in Firefox. | John Resig | 2007-08-20 | 1 | -2/+2 |
| | |||||
* | Complete overhaul of the Ajax test suite, it's now passing in all browsers. ↵ | John Resig | 2007-08-19 | 1 | -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 Resig | 2007-08-07 | 1 | -2/+2 |
| | |||||
* | When we disabled triggering of clicks, we also killed off blur and focus, ↵ | John Resig | 2007-07-31 | 1 | -1/+1 |
| | | | | this fixes that (bug #1440). | ||||
* | trigger DOM0 event handlers when doing a trigger (#1363) | Brandon Aaron | 2007-07-21 | 2 | -4/+15 |
| | |||||
* | broken test in IE | Brandon Aaron | 2007-07-20 | 1 | -13/+11 |
| | |||||
* | Fix for #1402 | Brandon Aaron | 2007-07-20 | 1 | -2/+2 |
| | |||||
* | Fix for IE firing document ready too soon (Bug #1320). | John Resig | 2007-07-12 | 1 | -1/+1 |
| | |||||
* | Tweaked some of the tests, added in events and fx tests. | John Resig | 2007-07-09 | 1 | -10/+5 |
| | |||||
* | Did some minor tidying up. | John Resig | 2007-06-30 | 1 | -6/+5 |
| | |||||
* | Fix for #1322 | Brandon Aaron | 2007-06-29 | 1 | -3/+3 |
| | |||||
* | Fix for #1187, #1278 and #1279 | Brandon Aaron | 2007-06-21 | 1 | -3/+4 |
| | |||||
* | Fix for #1185 | Brandon Aaron | 2007-05-31 | 1 | -7/+12 |
| | |||||
* | Fix for #923, #1136 and #1233 | Brandon Aaron | 2007-05-31 | 1 | -2/+8 |
| | |||||
* | Use .one() when doing a .bind() with an "unload" event type (#1242) | Brandon Aaron | 2007-05-31 | 1 | -1/+4 |
| | |||||
* | Fix event.which (#1217) | Brandon Aaron | 2007-05-30 | 1 | -46/+37 |
| | |||||
* | Clean up in jQuery.event.add for assigning a handler.guid | Brandon Aaron | 2007-05-23 | 1 | -7/+4 |
| | |||||
* | fix style, prefix and typo in a few comments | Ed Engelhardt | 2007-05-22 | 1 | -2/+2 |
| | |||||
* | Added support for the event object properties relatedTarget, metaKey, which, ↵ | John Resig | 2007-05-20 | 1 | -2/+23 |
| | | | | and charCode. Fixes bug #1204. | ||||
* | Clean up in jQuery.event.fix (#1171) | Brandon Aaron | 2007-05-11 | 1 | -3/+3 |
| | |||||
* | Fix for #1186 | Brandon Aaron | 2007-05-11 | 1 | -1/+1 |
| | |||||
* | Query now throws no warnings under strict mode in Firefox (ticket #922). In ↵ | John Resig | 2007-04-29 | 1 | -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 #1061 | Brandon Aaron | 2007-04-26 | 1 | -1/+3 |
| | |||||
* | unbind handlers with data + test (#935) | Brandon Aaron | 2007-04-24 | 2 | -5/+12 |
| | |||||
* | != undefined :) | Brandon Aaron | 2007-04-24 | 1 | -1/+1 |
| | |||||
* | Don't pass handler function as data for events + test (#1140) | Brandon Aaron | 2007-04-24 | 2 | -10/+15 |
| | |||||
* | Fix an issue with adding multiple event handlers and reattaching the global ↵ | Brandon Aaron | 2007-04-22 | 1 | -13/+13 |
| | | | | event handler in IE | ||||
* | Adding back modified test for #939 | Brandon Aaron | 2007-04-22 | 1 | -2/+20 |
| | |||||
* | Fix scope issue in DOM 2 event handlers | Brandon Aaron | 2007-04-22 | 1 | -12/+18 |
| | |||||
* | Use DOM 2 event handlers, do not trigger click on a tags and event.data no ↵ | Brandon Aaron | 2007-04-22 | 2 | -60/+48 |
| | | | | longer global |