John Resig
|
cd28922b78
|
Made sure that .removeClass(null) doesn't throw an exception. Fixes #3847.
|
2009-01-20 17:33:25 +00:00 |
|
John Resig
|
a78557472c
|
Focused support of .live(). stopPropagation and stopImmediatePropagation are not supported - and do not do what the use would expect.
|
2009-01-20 17:25:37 +00:00 |
|
John Resig
|
28a1f02223
|
Re-worked the logic for where .selector and .context are added for ID selectors (especially ones that aren't found). Fixes jQuery bug #3833.
|
2009-01-20 16:00:48 +00:00 |
|
John Resig
|
7647cebc39
|
Added some missing spaces - helps to calm XHTML error messages in Safari.
|
2009-01-20 15:46:40 +00:00 |
|
John Resig
|
04977b8ea2
|
Brought the logic for handling isXMLDoc over from Sizzle.
|
2009-01-19 23:17:30 +00:00 |
|
John Resig
|
6799982835
|
Made sure that a child element exists before the check is done, fixes jQuery bug #3870.
|
2009-01-19 23:04:03 +00:00 |
|
Ariel Flesler
|
735d44f6df
|
jquery event: closes #3843. Some events' timeStamp are wrong on Firefox, we don't rely on the native value anymore. timeStamp reflects object creation, not last event triggered.
|
2009-01-19 22:20:25 +00:00 |
|
John Resig
|
82e8d11c12
|
Re-worked the logic for handling isXML detection.
|
2009-01-19 21:57:18 +00:00 |
|
John Resig
|
96152559e0
|
Landing a fix for non-link anchor tabIndex (from scott.gonzalez). Fixes ticket #3916.
|
2009-01-19 21:40:23 +00:00 |
|
John Resig
|
d6e541426d
|
Fixed the logic for determining if an XML file is being used. Fixes jQuery bug #3896.
|
2009-01-19 18:56:02 +00:00 |
|
John Resig
|
8e8d7ade43
|
Merged some recent fixes in from Sizzle.
|
2009-01-19 18:09:11 +00:00 |
|
John Resig
|
c2fad371f1
|
Made the IE frameElement check more explicit. Fixes #3880.
|
2009-01-17 22:04:23 +00:00 |
|
Ariel Flesler
|
34a9f8a210
|
jquery fx: sync animations were being left on jQuery.timers (double callback)
jQuery.timerId is now a local var and it's not null'ed anymore.
|
2009-01-14 23:09:52 +00:00 |
|
John Resig
|
6dc30ae7f6
|
Merged Sizzle changes back into jQuery.
|
2009-01-13 16:40:19 +00:00 |
|
John Resig
|
d5858c7cb8
|
Added a trailing / in the innerHTML support test to allow it to not
throw an error in XHTML documents. Fixes #3829.
|
2009-01-13 15:08:11 +00:00 |
|
John Resig
|
944484c3fe
|
Merged in from Sizzle - a change to child filter selector logic.
|
2009-01-12 16:02:55 +00:00 |
|
John Resig
|
95094d1685
|
Merged in a fix from Sizzle for :not(:first).
|
2009-01-12 14:45:58 +00:00 |
|
John Resig
|
ea78377760
|
Only try to wrap the element if it's not disconnected, fixed #3828.
|
2009-01-12 14:07:14 +00:00 |
|
John Resig
|
0c97178553
|
Fixed an issue with parentNode being accessed in attr() on disconnected DOM elements.
|
2009-01-12 14:00:35 +00:00 |
|
John Resig
|
1eae1541b8
|
Made a note about the push method.
|
2009-01-12 00:24:16 +00:00 |
|
John Resig
|
fa615bedd4
|
Made the case specific of the type attribute.
|
2009-01-11 21:22:37 +00:00 |
|
John Resig
|
2e42c5b044
|
Merging the latest from Sizzle.
|
2009-01-11 19:45:04 +00:00 |
|
John Resig
|
73ff49ac9a
|
Prevented non-script <script> blocks from executing, fixing #3733.
|
2009-01-11 19:33:01 +00:00 |
|
John Resig
|
7346a476cc
|
Fixed boxModel support - is now computed with feature detection, rather than sniffing.
|
2009-01-11 16:17:20 +00:00 |
|
John Resig
|
0066ba3f82
|
.closest() with positional selectors wasn't worked as expected.
|
2009-01-10 20:30:03 +00:00 |
|
John Resig
|
b1018cad12
|
Landed a fix for when a DOM element gets accidentally removed by another live event handler. Thanks to Irae for the patches. Fixed #3820.
|
2009-01-10 19:57:07 +00:00 |
|
John Resig
|
29bf601f34
|
Fixed an issue with script nodes being removed incorrectly, fixes #3737.
|
2009-01-10 01:07:59 +00:00 |
|
John Resig
|
ec7baf230d
|
Didn't get specific enough with the proxy guid, fixes #3787.
|
2009-01-09 22:14:48 +00:00 |
|
John Resig
|
d12e8a34e6
|
Made it so that you can bind a single function to multiple .live() selectors. Additionally, simplified the proxy code to provide a default proxy function.
Fixes #3787.
|
2009-01-09 22:10:42 +00:00 |
|
Ariel Flesler
|
6898cd6d2a
|
jquery event: Fixes #3538. unbind on many events was failing.
|
2009-01-08 22:21:16 +00:00 |
|
John Resig
|
c6f189ac73
|
Selector state wasn't being passed along on a cloned jQuery object.
|
2009-01-08 21:41:58 +00:00 |
|
Scott González
|
49d0d5b7a3
|
Fixed tabindex normalization so that elements that natively support tabbing, but don't have a tabindex explicitly set return 0 instead of undefined.
Removed jQuery.support.tabindex since we're only normalizing non-XML right now and all browsers support tabIndex for HTML documents.
|
2009-01-07 14:36:30 +00:00 |
|
John Resig
|
f9e0b1ed7a
|
Merged in a missing argument from Sizzle.
|
2009-01-07 14:31:28 +00:00 |
|
John Resig
|
d8706c5ac9
|
Landed a number of improvements to the selector engine. Results are auto-merged onto the jQuery
object, class filtering is now done inline, and not filtering is more efficient.
|
2009-01-07 00:13:57 +00:00 |
|
John Resig
|
cc70e03ec7
|
Made the .unqiue() within .find() optional (speeds up calls).
|
2009-01-06 16:17:50 +00:00 |
|
Ariel Flesler
|
2a81c359d5
|
jquery selector: Replacing {0,1} for ? in a regex.
|
2009-01-05 23:19:58 +00:00 |
|
John Resig
|
1822939000
|
Switched back to the old style of running embedded scripts (users who have duplicate runs will
have to deal with it another way).
|
2009-01-05 22:58:02 +00:00 |
|
John Resig
|
4503457616
|
Oops, order of operations.
|
2009-01-05 22:02:20 +00:00 |
|
John Resig
|
089da4ea77
|
Brought in a fix from Sizzle - IE doesn't have .contains on XML elements.
|
2009-01-05 21:59:07 +00:00 |
|
John Resig
|
69e86d4f98
|
The triggered flag was being set too early, which was preventing bubbling form working when a
native event existed.
|
2009-01-05 20:43:24 +00:00 |
|
John Resig
|
ebd9205fdb
|
Make sure that if no ownerDocument is available that we fall back to the node itself (likely the document).
|
2009-01-05 19:22:25 +00:00 |
|
John Resig
|
122b672f70
|
Landed cross-browser support for tabIndex, by Scott, closes ticket #3649.
|
2009-01-05 17:34:42 +00:00 |
|
Ariel Flesler
|
42c99472cc
|
jquery event: Removed a needless if (old code)
|
2009-01-05 13:31:21 +00:00 |
|
Ariel Flesler
|
0c1653249a
|
jquery intro: looks nicer when built
|
2009-01-05 12:09:04 +00:00 |
|
Ariel Flesler
|
e216243a03
|
jquery fx: Shortening the code additions on [6037].
|
2009-01-05 12:05:38 +00:00 |
|
John Resig
|
558d03f24c
|
Merging from Sizzle (fixed a bug when querySelectorAll is used.
|
2009-01-05 02:45:20 +00:00 |
|
John Resig
|
cc66e6affe
|
Made hide, show, toggle, slideUp, slideDown, and slideToggle animate margins and paddings in addition to height, width, and opacity (results in a much-smoother animation).
|
2009-01-05 01:14:36 +00:00 |
|
John Resig
|
989667c9fd
|
Synced with the Sizzle repository.
|
2009-01-05 00:21:13 +00:00 |
|
John Resig
|
d1146aa7bf
|
.live("div div") was failing due to the extra space in the selector (which conflicted with multiple event binding in .bind).
|
2009-01-04 23:58:43 +00:00 |
|
John Resig
|
192d6cd4a3
|
Moved the copyright to the intro file, added a ! so that it passes through YUIMin untouched, and changed the Date and Revision so that they're now generated automatically based upon all of jQuery rather than just the core file.
|
2009-01-04 23:34:18 +00:00 |
|