aboutsummaryrefslogtreecommitdiffstats
path: root/src/core.js
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #2027 - make sure that cloned elements (within appendTo, etc.) have ↵John Resig2007-12-201-1/+1
| | | | their events cloned by default.
* Insure width/height do not return a negative number.Brandon Aaron2007-12-191-1/+1
|
* Fixed #2076 where .val() could return an array instead of undefined when the ↵David Serduke2007-12-181-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 properlyBrandon Aaron2007-12-181-7/+13
|
* Fixed #2070 by adding a test for !nodeType to isArrayLike so DOM elements ↵David Serduke2007-12-171-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 Serduke2007-12-171-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 Serduke2007-12-171-0/+6
| | | | innerHTML was done in some cases.
* Fixed #1781 for warnings created on load by FF javascript.options.strict == ↵David Serduke2007-12-161-23/+24
| | | | true.
* Added some improvements to changes made in [4143] for #1854.John Resig2007-12-131-10/+8
|
* Fixed #1854 by using wizzud's suggestion. The only real difference is the ↵David Serduke2007-12-131-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 Aaron2007-12-131-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 Serduke2007-12-121-1/+1
| | | | added unit test for it.
* Greatly reduced the complexity of the width/height methods. This also fixes ↵Brandon Aaron2007-12-111-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 Serduke2007-12-101-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 Resig2007-12-101-4/+5
| | | | $(DOMElement) was 38ms, is now 13ms.
* Fixed clone so that it now properly copies changes to the innerHTML in IE. ↵Brandon Aaron2007-12-081-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 Serduke2007-12-071-9/+20
| | | | node and comment node safe.
* Fix for #2002Jörn Zaefferer2007-12-061-1/+1
|
* Fixed #1419 where IE failed with .text() on an XML node. This is part of a ↵David Serduke2007-12-051-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 Serduke2007-12-051-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 Serduke2007-12-041-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 Serduke2007-12-041-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 Serduke2007-11-301-1/+1
| | | | .extend()-ed.
* Removed comments and code related to Safari being unable to do a sync global ↵David Serduke2007-11-301-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 Serduke2007-11-281-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 Serduke2007-11-281-2/+2
|
* Fixed #1070 by converting all setAttribute() values to a string which is ↵David Serduke2007-11-281-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 Serduke2007-11-281-1/+1
|
* Fixed #1599 as Brandon suggested to ignore negative values to width and ↵David Serduke2007-11-281-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 Serduke2007-11-271-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 Resig2007-11-271-1/+7
|
* Fix for #1944. Added nodeName and tagName to jQuery.props and tests for ↵Brandon Aaron2007-11-191-1/+3
| | | | maxlength, defaultValue, selectedIndex, tagName and nodeName.
* Fixed #1074 where .html() was incorrectly changing the selected value of an ↵David Serduke2007-11-171-1/+1
| | | | option.
* Changed core.js from CRLF to LF eol style to match the rest of the source ↵David Serduke2007-11-171-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 Serduke2007-11-171-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 Serduke2007-11-161-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 #1893Brandon Aaron2007-11-141-1/+2
|
* Added a check to make sure a parent node exists in call remove() to avoid ↵David Serduke2007-11-051-1/+2
| | | | errors as seen in bug #1742.
* Added a fix for .noConflict(true) not reverting properly. Also added unit ↵John Resig2007-10-201-4/+4
| | | | tests for noConflict.
* Ok, self[...] was BS, switching to window[...], bug #1748.John Resig2007-10-181-1/+1
|
* Fix for bug #1546 where a deep copy was attempted of DOM elements (which ↵John Resig2007-10-171-1/+1
| | | | isn't needed).
* Added a fix for bug #1698, in which injected scripts were executed out of ↵John Resig2007-10-171-19/+31
| | | | order, in relation to the DOM.
* Fixed .val(String) for select elements (#1760) [Thanks Sam]Brandon Aaron2007-10-121-1/+1
|
* Fix for #1779Jörn Zaefferer2007-10-121-1305/+1305
|
* Fixes memory leaks relating to events in IE with page unload and with jQuery ↵Brandon Aaron2007-10-061-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 3463Brandon Aaron2007-10-061-5/+10
|
* A fix for bug #1443, where globalEval occurred asynchronously in Safari 2, ↵John Resig2007-10-011-8/+12
| | | | provided by Andrea Giammarchi.
* Completely overhauled the syntax of core - re-worked variable names, ↵John Resig2007-09-231-423/+575
| | | | formatting, comments, and some structure.
* Fixed #1474, setting selectedIndexBrandon Aaron2007-09-181-1/+2
|
* Use document.compatMode for quirks test in width/height methodBrandon Aaron2007-09-181-1/+1
|