aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Landing pull request 397. withinElement rewrite in event. Fixes #6234, ↵rwldrn2011-06-141-18/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | #9357, #9447. More Details: - https://github.com/jquery/jquery/pull/397 - http://bugs.jquery.com/ticket/6234 - http://bugs.jquery.com/ticket/9357 - http://bugs.jquery.com/ticket/9447
* | | | Attribute hooks do not need to be attached in XML docs. Fixes #9568.timmywil2011-06-131-14/+17
| | | |
* | | | Revert "Add catch block to try/finally in deferred. Fixes #9033. Test case ↵timmywil2011-06-081-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | needed." Line of exception was lost when debugging. This reverts commit 0a80be67f4fe968d99777564a02aeddbde1fbf35.
* | | | Check classes passed for duplicates. Fixes #9499.timmywil2011-06-072-24/+27
| | | |
* | | | Add catch block to try/finally in deferred. Fixes #9033. Test case needed.timmywil2011-06-071-2/+3
| | | |
* | | | Remove fellback in width/height cssHooktimmywil2011-06-071-1/+1
| | | |
* | | | Landing pull request 401. Nulling all elements created in support.js; Fixes ↵rwldrn2011-06-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | #9471. More Details: - https://github.com/jquery/jquery/pull/401 - http://bugs.jquery.com/ticket/9471
* | | | Optimize width/height retrieval (moved logic to getWH, removed adjustWH). ↵timmywil2011-06-062-65/+42
| | | | | | | | | | | | | | | | Supplements #9441, #9300.
* | | | Add margin after checking width. Add tests. Fixes #9441. Fixes #9300.Mike Sherov2011-06-061-21/+46
| | | |
* | | | Landing pull request 403. Check for both camelized and hyphenated data ↵rwldrn2011-06-061-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | property names; Fixes #9301. More Details: - https://github.com/jquery/jquery/pull/403 - http://bugs.jquery.com/ticket/9301
* | | | Landing pull request 404. Removes unused hasOwn var declaration. Fixes #9510.rwldrn2011-06-061-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | More Details: - https://github.com/jquery/jquery/pull/404 - http://bugs.jquery.com/ticket/9510
* | | | Move the value attrHook to the main attrHooks object to save bytestimmywil2011-05-261-20/+19
| | | |
* | | | Move window/document test to dimensions for consistencytimmywil2011-05-252-11/+6
| | | |
* | | | Return null for outer/inner width/height calls on window/document. Fixes #7557.timmywil2011-05-252-5/+11
| | | |
* | | | elem.getElementsByTagName calls the function in IE6/7. Fixes #9370.timmywil2011-05-251-1/+1
| | | |
* | | | Landing pull request 389. Null elements in clone to avoid memory leak in IE. ↵Scott Hughes2011-05-251-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #9341. More Details: - https://github.com/jquery/jquery/pull/389 - http://bugs.jquery.com/ticket/9341
* | | | Landing pull request 383. Relocating jQuery.camelCase to core; Fixes #9368.rwldrn2011-05-252-10/+15
| | | | | | | | | | | | | | | | | | | | | | | | More Details: - https://github.com/jquery/jquery/pull/383 - http://bugs.jquery.com/ticket/9368
* | | | detachEvent is unnecessary since we're nulling div. Fixes #8873.timmywil2011-05-251-2/+1
| | | |
* | | | Null created elements in support to avoid leaks in IE. Tested IE6-8. Leaks ↵timmywil2011-05-251-0/+3
| | | | | | | | | | | | | | | | are contained to the byte. Fixes #9294.
* | | | Remove unnecessary background setting in support now that we have the div ↵timmywil2011-05-251-3/+1
|/ / / | | | | | | | | | reversion. Test added.
* | | Landing pull request 352. Slightly improved defaultDisplay() and Throbber of ↵Mathias Bynens2011-05-201-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | Doom. Fixes #8994. More Details: - https://github.com/jquery/jquery/pull/352 - http://bugs.jquery.com/ticket/8994
* | | Landing pull request 382. Adds support for number values (meter,progress); ↵rwldrn2011-05-201-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #9319. More Details: - https://github.com/jquery/jquery/pull/382 - http://bugs.jquery.com/ticket/9319
* | | Unnecessary var removed.timmywil2011-05-181-1/+0
| | |
* | | Handle unset value attributes consistently depending on property existence. ↵timmywil2011-05-181-3/+4
| | | | | | | | | | | | Supplements #9328.
* | | Make the value hook less obtrusive for elements which do not inherently have ↵timmywil2011-05-181-1/+3
| | | | | | | | | | | | a value property. Fixes #9328.
* | | Switched title attribute to getAttributeNode for IE6/7. Fixes #9329.timmywil2011-05-181-1/+1
| | |
* | | Landing pull request 377. Check custom data != null(undefined), allows zero; ↵Rick Waldron2011-05-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #9285. More Details: - https://github.com/jquery/jquery/pull/377 - http://bugs.jquery.com/ticket/9285
* | | Use getAttributeNode for ^on attributes in IE6/7 to avoid anonymous function ↵timmywil2011-05-161-1/+1
| | | | | | | | | | | | wrapper. Fixes #9298.
* | | Retrieve the class attribute on a form in IE6/7. Fixes 9286.timmywil2011-05-141-1/+3
| | |
* | | Removing unnecessary argument type check for boolean hooktimmywil2011-05-131-2/+1
| | |
* | | Make sure setting boolean attributes to the same name sets the property to a ↵timmywil2011-05-131-1/+1
| | | | | | | | | | | | boolean type
* | | Use prop to retrieve boolean properties (so the selected hook will be used)timmywil2011-05-131-1/+1
| | |
* | | Landing pull request 365. jQuery.buildFragment, ensure doc is a document; ↵Rick Waldron2011-05-131-3/+16
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #8950. More Details: - https://github.com/jquery/jquery/pull/365 - http://bugs.jquery.com/ticket/8950
| * | | jQuery.buildFragment, ensure doc is a document; Includes comments; Adds unit ↵Rick Waldron2011-04-301-4/+17
| | | | | | | | | | | | | | | | test. Fixes #8950
* | | | Style edits for pull request 375timmywil2011-05-131-1/+1
| | | |
* | | | Landing pull request 375. Added test case to support #9237 Fixes #9237.avaly2011-05-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | More Details: - https://github.com/jquery/jquery/pull/375 - http://bugs.jquery.com/ticket/9237
* | | | Animation callbacks keep their place in the queue stack. Fixes #9220.timmywil2011-05-131-4/+4
| | | |
* | | | Fixes #9239. If the body is already present in the DOM, use a div within it ↵jaubourg2011-05-131-10/+22
| | | | | | | | | | | | | | | | to perform boxModel-related support tests. Unit test added.
* | | | Fixes #9221. Wraps openings of html comments and CDATA blocks found at the ↵jaubourg2011-05-111-2/+3
| | | | | | | | | | | | | | | | beginning of inserted script elements into a javascript block comment so that the new implementation of globalEval will not throw an exception in IE (execScript being less lenient than eval). Unit tests added.
* | | | Updating Sizzle.John Resig2011-05-101-0/+0
| | | |
* | | | Update sizzle.John Resig2011-05-101-0/+0
| | | |
* | | | Fix tabs in delegate test.John Resig2011-05-101-0/+0
| | | |
* | | | Make sure that data properties with hyphens are always accessed/set using ↵John Resig2011-05-101-2/+2
| | | | | | | | | | | | | | | | camelCase. Fixes #9124.
* | | | Make sure that mouseenter/mouseleave fire on the correct element when doing ↵John Resig2011-05-101-3/+4
| | | | | | | | | | | | | | | | delegation. Fixes #9069.
* | | | Landing pull request 374. .animate() Callbacks should fire in correct order ↵louisremi2011-05-101-5/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (unit test included). Fixes #9100. More Details: - https://github.com/jquery/jquery/pull/374 - https://github.com/jquery/jquery/issues/9100
| * | | | .animate() Callbacks should fire in correct order (fix #9100 + unit test)louisremi2011-05-091-5/+2
| | | | |
* | | | | Landing pull request 370. Fixes #8763.Sahab Yazdani2011-05-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | More Details: - https://github.com/jquery/jquery/pull/370 - https://github.com/jquery/jquery/issues/8763
* | | | | Add fallback to prop for the window and document. Switch value to use the ↵timmywil2011-05-101-12/+35
| | | | | | | | | | | | | | | | | | | | property instead of the attribute for back compat.
* | | | | Fixes #9104. Returning null or undefined in a pipe callback shouldn't end up ↵jaubourg2011-05-091-1/+1
| | | | | | | | | | | | | | | | | | | | throwing an exception. Silly, silly, me.
* | | | | Fixes #9109. When jQuery is loaded in the body, then the fake body element ↵jaubourg2011-05-091-2/+3
| | | | | | | | | | | | | | | | | | | | used in support has to be inserted before the document's body for boxModel to be properly detected (got the hint by looking at the code in jQuery mobile). Test page added so that we can keep checking this.