aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | | | | | | | | | | | | | | | | | | | Non-existent attribute for jQuery.attr no longer needs to check for "undefined"timmywil2011-04-031-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Remove an unnecessary var - Use variable in removeAttr for better minification
| | * | | | | | | | | | | | | | | | | | | | | | Performance enhancement switching nodeType to a vartimmywil2011-04-031-8/+10
| | | | | | | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | | | | | | Pass jslint, 2 missing semicolonstimmywil2011-04-031-2/+2
| | | | | | | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | | | | | | Style edits according to comments from John and rwaldron.timmywil2011-04-031-9/+19
| | | | | | | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | | | | | | Don't use extend when setting the action attrHook for IE6/7timmywil2011-04-031-2/+2
| | | | | | | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | | | | | | No, don't return this.timmywil2011-04-031-2/+0
| | | | | | | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | | | | | | Simplify jQuery.removeAttr and return thistimmywil2011-04-031-5/+6
| | | | | | | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | | | | | | Full test suite now passes in all browsers! There are probably some tweaks ↵timmywil2011-04-032-8/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | we can make to shorten and simplify. - removeAttr now only uses setAttribute if camelCase setAttribute is not supported + Might want to rename jQuery.support.getSetAttribute - tabIndex is a special case now for hooks where undefined should be returned. + Should we be checking if hooks returns undefined? undefined might be the desired return value in future hooks. As of now, tabIndex is the only one that needs it, but the test suite will still pass if we don't check if hooks are undefined.
| | * | | | | | | | | | | | | | | | | | | | | | Continuing IE7 testing, conditional attr fixes and hooks with feature ↵timmywil2011-04-033-69/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | testing. Will figure out a way to shorten after the test suite passes.
| | * | | | | | | | | | | | | | | | | | | | | | Fix feature test, accidentally got rid of closure endtimmywil2011-04-032-6/+7
| | | | | | | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | | | | | | Didn't actually need the hooks anymoretimmywil2011-04-031-16/+9
| | | | | | | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | | | | | | First proposed solution for IE6/7 get/setAttribute quirks. Needs more ↵timmywil2011-04-032-10/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | testing, but solves some issues
| | * | | | | | | | | | | | | | | | | | | | | | Speed up hasAttr a littletimmywil2011-04-031-11/+13
| | | | | | | | | | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | | | | | | | | | Now passes in IE8, changed around $.hasAttr and switched the attrHook for ↵timmywil2011-04-031-11/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | selected to be a propHook
| | * | | | | | | | | | | | | | | | | | | | | | Make the new attr/prop changes pass the test suite (in Webkit). There are ↵timmywil2011-04-032-21/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | still errors in IE. + Added hooks for selected, checked, readonly, disabled to removeAttr if set to falsey + Removed all attrs from attrFix, these aren't needed for setAttribute + If prop is used for class, do we want a propFix for class? - We could just assume the user should know to use className with prop. I've done the latter for now. + Created tests for $.fn.prop and $.fn.removeProp - Actually all I did was change broken attr tests to prop where it made sense.
| | * | | | | | | | | | | | | | | | | | | | | | Very crude first pass at splitting apart the attr/prop logic. Also adding in ↵jeresig2011-04-031-103/+165
| | | |_|_|_|_|_|_|_|_|_|_|/ / / / / / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | attrHooks/propHooks. All of it is completely untested.
| * | | | | | | | | | | | | | | | | | | | | | Very crude first pass at splitting apart the attr/prop logic. Also adding in ↵jeresig2011-03-061-103/+165
| | |_|_|_|_|/ / / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | attrHooks/propHooks. All of it is completely untested.
* | | | | | | | | | | | | | | | | | | | | | Pulling in latest Sizzle.jeresig2011-04-101-0/+0
| | | | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | | Fixes #7328. When getting data- attributes, after-cap any embedded dashes ↵Alexis Abril2011-04-101-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | per the W3C HTML5 spec.
* | | | | | | | | | | | | | | | | | | | | | Fixes #8814. Clean up inArray.Rick Waldron2011-04-101-8/+4
| |_|_|_|_|_|_|_|_|_|_|_|/ / / / / / / / / |/| | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | Adds a default falsy value for focusinBubbles + minor style consistency ↵jaubourg2011-04-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | regarding test expression in support map initialization.
* | | | | | | | | | | | | | | | | | | | | Applies exception in Style Guidelines regarding objects and functions when ↵jaubourg2011-04-086-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | they are the last argument of a function call.
* | | | | | | | | | | | | | | | | | | | | Renames chain as pipe.jaubourg2011-04-081-3/+2
| | | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | Fixes #8722. Remove try/catch used by #3533 to fix the IE Table Colon Blow ↵Dave Methvin2011-04-071-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bug, and instead check for colon in the event name. Thanks to daguej for scoping this out -- a colonoscopy you might say.
* | | | | | | | | | | | | | | | | | | | | Merge branch 'master' of github.com:jquery/jqueryDave Methvin2011-04-075-175/+240
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge branch 'master' of github.com:jquery/jqueryjaubourg2011-04-071-1/+1
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|_|_|_|_|_|_|_|/ / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/support.js
| * | | | | | | | | | | | | | | | | | | | | Rewrite of the support module. We use a temporary body element in order not ↵jaubourg2011-04-071-151/+142
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to have to wait for the document to be ready for boxModel-related support tests.
| * | | | | | | | | | | | | | | | | | | | | Rewrite of globalEval. Uses window.execScript or window.eval with a trick to ↵jaubourg2011-04-071-17/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ensure proper context. Unit tests added.
| * | | | | | | | | | | | | | | | | | | | | Adds fn.promise as a mean to observe the completion of animations on a set ↵jaubourg2011-04-071-1/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | of elements. Only queued animations are handled for now, non-queued animations support coming soon. Effects unit tests updated to test the feature (needs more testing though).
| * | | | | | | | | | | | | | | | | | | | | Adds always and chain methods to deferreds.jaubourg2011-04-071-2/+30
| | | | | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | | | Makes sure each animation tick has the same timestamp for all animations in ↵jaubourg2011-04-071-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the batch.
* | | | | | | | | | | | | | | | | | | | | | Create jQuery.holdReady(true/false) method to encapsulate jQuery.readyWait++ ↵Dave Methvin2011-04-071-7/+11
| |/ / / / / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | / jQuery.ready(true) logic. Fix problem where jQuery.ready may trigger twice, causing the (unsupported) document.onready to run twice. Fixes #8803 .
* | | | | | | | | | | | | | | | | | | | | Fix #8732. Change feature detect for focusin event support, so IE9 won't ↵Dave Methvin2011-04-062-1/+2
|/ / / / / / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | have duplicate events.
* | | | | | | | | | | | | | | | | | | | Fixes #8712. Bubble custom events to the window when they are triggered. ↵Dave Methvin2011-04-061-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ride that, Cowboy!
* | | | | | | | | | | | | | | | | | | | Fix some spacing and comment issues that crept in with the rebase.Dave Methvin2011-04-061-61/+60
| | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | Sadly, we still have to bubble the event so inline handlers will work.Dave Methvin2011-04-061-5/+4
| | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | Only bubble a triggered event if we have attached a jQuery handler, but ↵Dave Methvin2011-04-061-27/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | check the current element for an inline handler regardless. Make some other size optimizations as well.
* | | | | | | | | | | | | | | | | | | | Switch from recursion to iteration for event triggering. Move event-name ↵Dave Methvin2011-04-061-70/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | namespace processing out of event handler, since it has to always go through trigger.
* | | | | | | | | | | | | | | | | | | | Skip id regex check when large html strings are passed to the jQuery ↵carpie2011-04-051-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | constructor (#7990).
* | | | | | | | | | | | | | | | | | | | Merge branch 'cssrelative.1.6' of https://github.com/danheberden/jquery into ↵Dave Methvin2011-04-051-3/+12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | danheberden-cssrelative.1.6
| * | | | | | | | | | | | | | | | | | | | Improve relative string performance in .css and some code cleanupDan Heberden2011-04-041-9/+10
| | | | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | | Bug 7345; Add support for explicit/relative string values in .css - modified ↵Dan Heberden2011-04-041-1/+9
| | |_|/ / / / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | from original pull req by brandonaron #78
* | | | | | | | | | | | | | | | | | | | Merge branch '4321' of https://github.com/rwldrn/jquery into rwldrn-4321Dave Methvin2011-04-051-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | | | | 4321 jQuery('#') returns empty jquery objectrwldrn2011-01-011-1/+0
| | | | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | | | 4321 returns empty jquery objectrwldrn2011-01-011-1/+2
| | | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | Shorten up the code and do event cleanup on test cases.Dave Methvin2011-04-051-8/+3
| | | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | Merge branch 'ticket_7883' of https://github.com/rwldrn/jquery into ↵Dave Methvin2011-04-051-1/+6
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rwldrn-ticket_7883
| * | | | | | | | | | | | | | | | | | | | | #7883 .delegate and .live should accept false as the fn arg, like bindrwldrn2011-01-011-1/+6
| |/ / / / / / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | | | | | | Remove extra else in parseJSONDan Heberden2011-04-051-2/+1
| | | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | Bug 7587; Enhancement/1.6 Feature: Bypass regexp filter on $.parseJSON and ↵Dan Heberden2011-04-051-8/+10
| |/ / / / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | use native thrown exceptions if window.JSON.parse is available