Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed #2027 - make sure that cloned elements (within appendTo, etc.) have ↵ | John Resig | 2007-12-20 | 1 | -1/+1 |
| | | | | their events cloned by default. | ||||
* | Insure width/height do not return a negative number. | Brandon Aaron | 2007-12-19 | 1 | -1/+1 |
| | |||||
* | Fixed #2076 where .val() could return an array instead of undefined when the ↵ | David Serduke | 2007-12-18 | 1 | -0/+1 |
| | | | | jquery object was empty. The bug was created during the .val() refactoring for the javascript strict FF ticket. | ||||
* | width and height methods are now working properly | Brandon Aaron | 2007-12-18 | 1 | -7/+13 |
| | |||||
* | Fixed #2070 by adding a test for !nodeType to isArrayLike so DOM elements ↵ | David Serduke | 2007-12-17 | 1 | -4/+2 |
| | | | | like SELECT are not considered array-like (even though they really are). | ||||
* | Fixed #2062 by adding a check to see if the selector is array-like in .not() ↵ | David Serduke | 2007-12-17 | 1 | -1/+4 |
| | | | | before testing it as an array. Otherwise it does a straight comparison during the filter test. | ||||
* | Fixed #2037 where Opera would mis-state the value of 'display' after an ↵ | David Serduke | 2007-12-17 | 1 | -0/+6 |
| | | | | innerHTML was done in some cases. | ||||
* | Fixed #1781 for warnings created on load by FF javascript.options.strict == ↵ | David Serduke | 2007-12-16 | 1 | -23/+24 |
| | | | | true. | ||||
* | Added some improvements to changes made in [4143] for #1854. | John Resig | 2007-12-13 | 1 | -10/+8 |
| | |||||
* | Fixed #1854 by using wizzud's suggestion. The only real difference is the ↵ | David Serduke | 2007-12-13 | 1 | -9/+15 |
| | | | | code is only called when there is more than a single selector. So there should be no speed decrease in the current working cases. Only additional functionality for cases that used to fail. | ||||
* | Getting the width and height of the document now returns the correct value ↵ | Brandon Aaron | 2007-12-13 | 1 | -2/+5 |
| | | | | in all browsers. It even works around the scrollWidth == offsetWidth bug in Firefox thanks to wizzud. | ||||
* | Fixed a bug in clone where it wouldn't work on an XML node in IE. Also ↵ | David Serduke | 2007-12-12 | 1 | -1/+1 |
| | | | | added unit test for it. | ||||
* | Greatly reduced the complexity of the width/height methods. This also fixes ↵ | Brandon Aaron | 2007-12-11 | 1 | -47/+14 |
| | | | | #2009, #1870, #1796, #1843, #1839, #1818, #1613, #1415 and #1629 | ||||
* | Fixed #1959 by postponing ALL script evaluations till the html insertion is ↵ | David Serduke | 2007-12-10 | 1 | -9/+2 |
| | | | | done. Before the code would immediately execute any scripts that weren't in subelements if no subelements prior had scripts in them (i.e. once any script was postponed they all were). This could cause inconsistent behavior. Since, at this time, we have to postpone some scripts it makes more sense to postpone them all. | ||||
* | Added a change that triples the speed of all uses of $(...). For example ↵ | John Resig | 2007-12-10 | 1 | -4/+5 |
| | | | | $(DOMElement) was 38ms, is now 13ms. | ||||
* | Fixed clone so that it now properly copies changes to the innerHTML in IE. ↵ | Brandon Aaron | 2007-12-08 | 1 | -3/+17 |
| | | | | Unfortunately, IE stores some modifications to some attributes only as a property and they are still not copied properly. This is documented in ticket #1836. | ||||
* | Fixed #1039 and #1733 by going through the core API and making them text ↵ | David Serduke | 2007-12-07 | 1 | -9/+20 |
| | | | | node and comment node safe. | ||||
* | Fix for #2002 | Jörn Zaefferer | 2007-12-06 | 1 | -1/+1 |
| | |||||
* | Fixed #1419 where IE failed with .text() on an XML node. This is part of a ↵ | David Serduke | 2007-12-05 | 1 | -1/+2 |
| | | | | series of tickets including #1264 where the context of the DOM manipulation was a problem in xml and iframe documents. | ||||
* | Fixed #1264. If you read the bug there were many proposed changes. As it ↵ | David Serduke | 2007-12-05 | 1 | -2/+2 |
| | | | | | | | turned out most of them had already been implemented. The last ones necessary were in .domManip() with when a <table> was 'this' and for .text(). Adding these last changes seems to make dom and text manipulation in IE frames possible. Unit test cases were added as well. In addition "submit.gif" was removed from the test suite index.html since it didn't exist. | ||||
* | Fixed #1763 by checking to see if .createElement() is available on the ↵ | David Serduke | 2007-12-04 | 1 | -0/+2 |
| | | | | context and if isn't default to other contexts. | ||||
* | Fixed #1438 where a filter could be set in IE but not have opacity in it. ↵ | David Serduke | 2007-12-04 | 1 | -1/+1 |
| | | | | The JS error was fixed by checking to make sure 'opacity=' is in the filter before seeing what its value is. | ||||
* | Fixed a problem with changeset [3841] where a function could no longer be ↵ | David Serduke | 2007-11-30 | 1 | -1/+1 |
| | | | | .extend()-ed. | ||||
* | Removed comments and code related to Safari being unable to do a sync global ↵ | David Serduke | 2007-11-30 | 1 | -1/+0 |
| | | | | eval. With the new globalEval() code that should no longer be a problem. | ||||
* | Back out one of the changes from the previous commit that wasn't necessary ↵ | David Serduke | 2007-11-28 | 1 | -1/+1 |
| | | | | to fix the bug and might not be desired. | ||||
* | Fixed #1908 by testing to make sure it isn't null before checking the nodeType. | David Serduke | 2007-11-28 | 1 | -2/+2 |
| | |||||
* | Fixed #1070 by converting all setAttribute() values to a string which is ↵ | David Serduke | 2007-11-28 | 1 | -1/+2 |
| | | | | what all browsers but IE did. This will bring IE in line with the others and fix the bug. | ||||
* | Fixed #1714 by adding a default empty string if the value is falsey. | David Serduke | 2007-11-28 | 1 | -1/+1 |
| | |||||
* | Fixed #1599 as Brandon suggested to ignore negative values to width and ↵ | David Serduke | 2007-11-28 | 1 | -3/+6 |
| | | | | height css. The fix itself is slightly different as it was moved to .css() instead of staying in .attr() like in his patch. I decided there was less chance of incorrect behavior (like if someone had an XML file with a width attribute that could be negative). Also took out some unneeded white space while I was in there. | ||||
* | Fixed #1942 but running jQuery.css() before jQuery.curCSS(). This way when ↵ | David Serduke | 2007-11-27 | 1 | -2/+2 |
| | | | | the property is width or height it gets the values through calculation instead of just css first. This appears to fix the problem in Opera without hurting any of the other browsers. | ||||
* | Added a quick shortcut to improve the speed of $(DOMElement) by over 2x. | John Resig | 2007-11-27 | 1 | -1/+7 |
| | |||||
* | Fix for #1944. Added nodeName and tagName to jQuery.props and tests for ↵ | Brandon Aaron | 2007-11-19 | 1 | -1/+3 |
| | | | | maxlength, defaultValue, selectedIndex, tagName and nodeName. | ||||
* | Fixed #1074 where .html() was incorrectly changing the selected value of an ↵ | David Serduke | 2007-11-17 | 1 | -1/+1 |
| | | | | option. | ||||
* | Changed core.js from CRLF to LF eol style to match the rest of the source ↵ | David Serduke | 2007-11-17 | 1 | -1325/+1325 |
| | | | | files. This was the only change for this changeset. To see it try: 'svn diff -x --ignore-eol-style -r 3841:3842' and there will be no diffs. (actual revision numbers are an educated guess) | ||||
* | Fix #1907 where the never-ending loop prevention used a coersion comparison ↵ | David Serduke | 2007-11-17 | 1 | -2/+8 |
| | | | | which sometimes dropped values incorrectly. Also fixed a bug where on deep copies the target copied over itself (i = 2 addition). Last made code handle the case when a property might have a string in it that should be overwritten by an object. | ||||
* | Fixed #1095 bug where radio buttons became unchecked during show(). Also ↵ | David Serduke | 2007-11-16 | 1 | -1/+1 |
| | | | | added unit test and had to fix a selector test that was broken by the new testing div in test/index.html. Last made some whitespace changes. | ||||
* | Fix for #1893 | Brandon Aaron | 2007-11-14 | 1 | -1/+2 |
| | |||||
* | Added a check to make sure a parent node exists in call remove() to avoid ↵ | David Serduke | 2007-11-05 | 1 | -1/+2 |
| | | | | errors as seen in bug #1742. | ||||
* | Added a fix for .noConflict(true) not reverting properly. Also added unit ↵ | John Resig | 2007-10-20 | 1 | -4/+4 |
| | | | | tests for noConflict. | ||||
* | Ok, self[...] was BS, switching to window[...], bug #1748. | John Resig | 2007-10-18 | 1 | -1/+1 |
| | |||||
* | Fix for bug #1546 where a deep copy was attempted of DOM elements (which ↵ | John Resig | 2007-10-17 | 1 | -1/+1 |
| | | | | isn't needed). | ||||
* | Added a fix for bug #1698, in which injected scripts were executed out of ↵ | John Resig | 2007-10-17 | 1 | -19/+31 |
| | | | | order, in relation to the DOM. | ||||
* | Fixed .val(String) for select elements (#1760) [Thanks Sam] | Brandon Aaron | 2007-10-12 | 1 | -1/+1 |
| | |||||
* | Fix for #1779 | Jörn Zaefferer | 2007-10-12 | 1 | -1305/+1305 |
| | |||||
* | Fixes memory leaks relating to events in IE with page unload and with jQuery ↵ | Brandon Aaron | 2007-10-06 | 1 | -6/+9 |
| | | | | methods remove, html and empty (#1610, #1618, #1697 and #1731). Also re-worked variable names to be more consistent with the core. | ||||
* | Fix regression in add and append in IE after revision 3463 | Brandon Aaron | 2007-10-06 | 1 | -5/+10 |
| | |||||
* | A fix for bug #1443, where globalEval occurred asynchronously in Safari 2, ↵ | John Resig | 2007-10-01 | 1 | -8/+12 |
| | | | | provided by Andrea Giammarchi. | ||||
* | Completely overhauled the syntax of core - re-worked variable names, ↵ | John Resig | 2007-09-23 | 1 | -423/+575 |
| | | | | formatting, comments, and some structure. | ||||
* | Fixed #1474, setting selectedIndex | Brandon Aaron | 2007-09-18 | 1 | -1/+2 |
| | |||||
* | Use document.compatMode for quirks test in width/height method | Brandon Aaron | 2007-09-18 | 1 | -1/+1 |
| |