aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Marked all the appropriate methods as being deprecated for the 1.1.4 release ↵John Resig2007-08-243-0/+11
| | | | (in preparation for 1.2).
* Brought back a husk method to represent evalScripts. I didn't realize so ↵John Resig2007-08-241-1/+6
| | | | many plugins relied on it (it's deprecated in this release).
* Tweaked the Ajax test suite for Safari.John Resig2007-08-221-5/+10
|
* Only bind .ready() once per instance of jQuery - and only bind if the ↵John Resig2007-08-222-3/+12
| | | | ready() method is actually called (nothing is bound if window/load is used).
* Fixed bug with the packed version of jQuery.John Resig2007-08-221-1/+1
|
* Fixed the case where global events weren't being triggered on window and ↵John Resig2007-08-221-1/+1
| | | | document.
* Fixed use of eval() and new Function() to work within the correct scope (and ↵John Resig2007-08-222-3/+3
| | | | not throw errors).
* Made 'jQuery' unrollable via .noConflict(true) and instances of new ↵John Resig2007-08-221-6/+12
| | | | Function() have been converted to eval(function(){}) in order to handle jQuery name changes. (Bug #1393)
* Added fix for undefined property in animation, in IE (Bug #1518)John Resig2007-08-221-1/+1
|
* Using some of the ideas presented by rformato, I've significantly sped up ↵John Resig2007-08-211-11/+30
| | | | $("#id") selection. It's now just 10% slower than doing: $(document.getElementById("test")), which seems quite acceptable. (Bug #1316)
* Added the new :has() selector (Bug #1521)John Resig2007-08-212-2/+6
|
* You can now assign jQuery to random namespaces - very cool. (Bug #1393)John Resig2007-08-212-2/+2
|
* Fix for a selector speed regression (calling a simple selector many times ↵John Resig2007-08-215-39/+40
| | | | | | | | | | resulted in a significant speed down). This has been fixed by breaking the RegExps out into the global scope. This required that a closure be implemented around the full jQuery script (which is now the case). Some simple changes were made in addition to the RegExp one, allowing for some greater flexibility on our part - and hopefully better compression. Speed results: http://dev.jquery.com/~john/ticket/1351/ vs. http://dev.jquery.com/~john/ticket/1351/113.html vs. http://dev.jquery.com/~john/ticket/1351/112.html
* Two quick fixes in relation to #1028. ajaxSetup shouldn't be deep and the ↵John Resig2007-08-212-2/+2
| | | | boolean arg should be used, not overwritten with 'true'.
* Make deep .extend() an optional argument - it will go deep if you pass in an ↵John Resig2007-08-213-5/+11
| | | | boolean as the first argument (fixed bug #1028).
* Fixed two cases where []. was used instead of Array.prototype. (Bug #1427)John Resig2007-08-202-2/+2
|
* Just pushed in my changes for making jQuery.each on objects faster, sample ↵John Resig2007-08-201-9/+15
| | | | results: http://dev.jquery.com/~john/ticket/each/obj.html
* Just pushed some major speed improvements through for $.each() - we're now ↵John Resig2007-08-201-2/+8
| | | | seeing a 2x speed improvement over 1.1.3. Some crude results can be found here: http://dev.jquery.com/~john/ticket/each/
* Make jQuery work without warnings in strict mode, in Firefox.John Resig2007-08-202-2/+5
|
* Implemented the new .slice() method (bug #1517).John Resig2007-08-202-0/+12
|
* Complete overhaul of the Ajax test suite, it's now passing in all browsers. ↵John Resig2007-08-196-246/+322
| | | | | | | | | | In order to achieve this I had to fix a numbe r of bugs in the suite itself, along with other random bugs that popped up. The following bugs were resolved along the wa y: #1236 (.extend() keeps processing when it hits nulls), #1028 (.extend() now works recursively), #1080 ($.get no longer overwrites the data parameter), #1210 (Creating script and link tags now work), and #1463 (jQuery.global has been re-too led to no longer leak memory and slow things down).
* Added a fix for IE returning comment nodes in * queries. I put the logic in ↵John Resig2007-08-192-3/+17
| | | | $.merge() but added a conditional such that the speed hit only effects IE users. (Bug #1155)
* Applied arrix's fix for getting style values on elements that aren't in the ↵John Resig2007-08-191-1/+1
| | | | DOM, in Safari. (Bug #1482)
* We were catching exceptions within the success callback of an Ajax request, ↵John Resig2007-08-191-30/+31
| | | | then causing an error callback to be called (which is incorrect). (Bug #1441)
* Fixed non-unique results from .parent(), .parents(), .next(), etc. (Bug #1449)John Resig2007-08-192-6/+15
|
* Added a fix for bug #1489, appending <caption> was broken.John Resig2007-08-162-2/+6
|
* More missing semicolons.John Resig2007-08-071-2/+2
|
* Added a couple JSLint-caught fixes.John Resig2007-08-071-3/+3
|
* Brought back jQuery.globalEval(), fixing bug #1425.John Resig2007-07-312-2/+17
|
* When we disabled triggering of clicks, we also killed off blur and focus, ↵John Resig2007-07-311-1/+1
| | | | this fixes that (bug #1440).
* The test for underscore selectors broke under Opera, so the element is now ↵John Resig2007-07-301-3/+12
| | | | loaded via Ajax and tested. (bug #1084)
* IE prunes whitespace from the start of innerHTML-injected strings. This ↵John Resig2007-07-301-1/+5
| | | | fixes that.
* Fixed failing test for Safari 2.John Resig2007-07-291-1/+1
|
* Got .css() working in Safari 2 as well (a number of shortcuts had to be ↵John Resig2007-07-291-10/+13
| | | | removed, unfortunately). This should successfully close bug #1349.
* Added a fix for Safari's broken CSS getComputedStyle accessing. ↵John Resig2007-07-292-12/+43
| | | | Additionally, added a fix for Safari mis-reporting @selected for display: none options. The test suite is now completely passing in Safari 3. (Bug #1349)
* Integrated the custom fx test suite into the main test suite. All tests are ↵John Resig2007-07-293-16/+278
| | | | now run automatically. Removed the old suite, as it was no longer needed.
* nevermind, I'm dumb. =PSean Catchpole2007-07-261-1/+1
|
* Fixed ajax array arguments in $.paramSean Catchpole2007-07-261-1/+1
|
* $("#foo", xml) would always return an empty set, fixed (bug #877). ↵John Resig2007-07-252-2/+3
| | | | Additionally, a bug in jQuery.isXMLDoc(xmlDoc) was discovered, if the element was, in fact, an XML document.
* Added a fix for relative // - $("//div",this) (bug #1418)John Resig2007-07-252-2/+3
|
* selectedIndex is now cloned cross-browser (#1294)Brandon Aaron2007-07-211-8/+14
|
* selectedIndex is now cloned in IE (#1294)Brandon Aaron2007-07-211-15/+25
|
* addClass doesn't fail when passed an undefined or null variable (#1309)Brandon Aaron2007-07-211-1/+1
|
* missing semi-colonBrandon Aaron2007-07-211-1/+1
|
* trigger DOM0 event handlers when doing a trigger (#1363)Brandon Aaron2007-07-212-4/+15
|
* Added support for parsererror errors from Ajax requests (bug #1145).John Resig2007-07-211-3/+6
|
* Added a fix for setting the style property in IE: .attr("style", "...") (bug ↵John Resig2007-07-211-2/+4
| | | | #1170).
* Added a fix for h1 + h2 not working. (Bug #1361)John Resig2007-07-201-1/+1
|
* Safari doesn't return the correct computed opacity. (Fix for bug #1369)John Resig2007-07-201-0/+3
|
* Added a fix to prevent the completion callback from firing multiple times in ↵John Resig2007-07-201-1/+1
| | | | Firefox on OSX (fixed bug #1406).