Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | You can now overwrite values returned from .data() with .bind("getData") - ↵ | John Resig | 2008-02-03 | 1 | -4/+20 |
| | | | | returning a value will override any bound value on that element. | ||||
* | Tweaked the .data() event triggering - it now triggers a single 'setData' ↵ | John Resig | 2008-02-03 | 1 | -12/+12 |
| | | | | event, passing in a key value pair of what was changed. | ||||
* | Added support for .unbind(".test") to unbind all namespaced events on an ↵ | John Resig | 2008-02-03 | 1 | -0/+10 |
| | | | | element. | ||||
* | Added $().data(), $().removeData(), and .bind("click!"). .data() and ↵ | John Resig | 2008-02-03 | 1 | -0/+51 |
| | | | | .removeData() handle namespaced data, .data() triggers a "set-KEY" event on all modified elements, and .bind("click!") only triggers a click (and no namespaced events). | ||||
* | Fix #2184 by using the jQuery.clean() function instead of a direct innerHTML ↵ | David Serduke | 2008-01-23 | 1 | -1/+13 |
| | | | | assignment in the clone() function for IE. | ||||
* | Fixed #2174 by removing the s.dataType == "json" check for possible cross ↵ | David Serduke | 2008-01-17 | 1 | -4/+4 |
| | | | | domain since it causes absolute urls to use a <script> tag ajax retrieval even though absolute urls work fine for retrieving local data. Cross-domain jsonp will still work since the $.ajax() function actually changes the s.dataType to "script" before it reaches this check in cases where it is s.dataType == "jsonp" or s.dataType == "json" and a parameter has =? in it. | ||||
* | Discontinued the test for $(form.elements). | John Resig | 2008-01-14 | 1 | -2/+5 |
| | |||||
* | Excluded a couple Ajax tests from running locally. | John Resig | 2008-01-14 | 1 | -1/+8 |
| | |||||
* | Added support for breaking in an object loop (Bug #2111). | John Resig | 2008-01-14 | 1 | -1/+14 |
| | |||||
* | Adding browser UA tests | Brandon Aaron | 2008-01-14 | 1 | -0/+36 |
| | |||||
* | fix for #2114; refactored tests for bind() to highlight failing ↵ | Jörn Zaefferer | 2008-01-14 | 1 | -16/+26 |
| | | | | select-change-test | ||||
* | Test for #2114 | Jörn Zaefferer | 2008-01-04 | 1 | -1/+2 |
| | |||||
* | Fixed a couple problems found in the test suite. First, IE doesn't like it ↵ | David Serduke | 2007-12-20 | 1 | -1/+2 |
| | | | | when text nodes were trying to duplicate their events in clone, so don't do text nodes (that shouldn't have events anyway). Also the fx module was freezing from a recent update that wasn't quite finished. | ||||
* | Removed a unit test that tested to see if queued objects were of a certain ↵ | David Serduke | 2007-12-20 | 1 | -6/+0 |
| | | | | type. It was decided you can queue anything and it is up to the coder to make sure it was intended. | ||||
* | Fixed #2027 - make sure that cloned elements (within appendTo, etc.) have ↵ | John Resig | 2007-12-20 | 1 | -1/+6 |
| | | | | their events cloned by default. | ||||
* | Fixed a problem in the unit tests for IE where an optimization made the test ↵ | David Serduke | 2007-12-20 | 1 | -1/+2 |
| | | | | case not work. The optimization was fine. It was the unit test that was taking a short cut which caused it to fail after the optimization went in. | ||||
* | added version to all builds; changed current version to 1.2.2-pre - to be ↵ | Jörn Zaefferer | 2007-12-19 | 1 | -0/+48 |
| | | | | updated after each release so its clear that a build is from which milestone; build.xml cleanup (removing uselss lite, docs, test and _with_plguins targets); deleted useless docs build files (replaced by wiki and wiki xml exporter and api browsers) | ||||
* | Fixed #2076 where .val() could return an array instead of undefined when the ↵ | David Serduke | 2007-12-18 | 1 | -1/+2 |
| | | | | 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 | 2 | -6/+51 |
| | |||||
* | Fixed #2070 by adding a test for !nodeType to isArrayLike so DOM elements ↵ | David Serduke | 2007-12-17 | 1 | -1/+1 |
| | | | | like SELECT are not considered array-like (even though they really are). | ||||
* | test for #2070 | Jörn Zaefferer | 2007-12-17 | 1 | -1/+4 |
| | |||||
* | Test for #2069 | Jörn Zaefferer | 2007-12-17 | 1 | -0/+8 |
| | |||||
* | Fixed #2062 by adding a check to see if the selector is array-like in .not() ↵ | David Serduke | 2007-12-17 | 1 | -1/+3 |
| | | | | 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 | 2 | -2/+9 |
| | | | | innerHTML was done in some cases. | ||||
* | Added a fix for bug #2020 - if you want to do data: {callback: "?"}, do ↵ | John Resig | 2007-12-17 | 1 | -3/+3 |
| | | | | jsonp: "callback" instead. | ||||
* | Adding data and removeData tests | Brandon Aaron | 2007-12-16 | 1 | -1/+19 |
| | |||||
* | new special events api, ready is now a first class event that you can use ↵ | Brandon Aaron | 2007-12-15 | 1 | -3/+28 |
| | | | | bind, unbind or the ready helper, two new events: mouseenter and mouseleave, the hover helper method now uses mouseenter and mouseleave, bind and unbind can now take a space sperated list of event types | ||||
* | Fixed #2046 by forcing the dataType to 'html' in the .load() function. | David Serduke | 2007-12-14 | 1 | -10/+23 |
| | |||||
* | Added a test case for $("<option>test</option>")[0].selected (bug #2050). | John Resig | 2007-12-14 | 1 | -1/+3 |
| | |||||
* | Fixed #1854 by using wizzud's suggestion. The only real difference is the ↵ | David Serduke | 2007-12-13 | 3 | -5/+10 |
| | | | | 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. | ||||
* | Fixed #1750 by adding a url that starts with "//" and is a dataType "script" ↵ | David Serduke | 2007-12-12 | 1 | -0/+22 |
| | | | | will now use a cross domain load the same as urls that start with "http". | ||||
* | Added more unit tests for offset. Fixed an offset issue relating to table ↵ | Brandon Aaron | 2007-12-12 | 5 | -3/+201 |
| | | | | header cells in Opera | ||||
* | Fixed a bug in clone where it wouldn't work on an XML node in IE. Also ↵ | David Serduke | 2007-12-12 | 1 | -1/+11 |
| | | | | added unit test for it. | ||||
* | Fix #1987 by only doing remote <script> type ajax with GET requests. All ↵ | David Serduke | 2007-12-11 | 1 | -0/+19 |
| | | | | other types will be passed on to XMLHttpRequest. | ||||
* | Fixed #1959 by postponing ALL script evaluations till the html insertion is ↵ | David Serduke | 2007-12-10 | 1 | -1/+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. | ||||
* | show is now element aware (#960) | Brandon Aaron | 2007-12-08 | 2 | -1/+26 |
| | |||||
* | Fix for #1486. Prevent IE from throwing an error when triggering focus on ↵ | Brandon Aaron | 2007-12-08 | 1 | -1/+11 |
| | | | | hidden input. | ||||
* | Fixed #1039 and #1733 by going through the core API and making them text ↵ | David Serduke | 2007-12-07 | 4 | -50/+146 |
| | | | | node and comment node safe. | ||||
* | Added ajax error messages in the unit test suite because Safari was ↵ | David Serduke | 2007-12-06 | 1 | -0/+44 |
| | | | | sometimes tossing errors that were being ignored and that caused a freeze in the test suite. | ||||
* | Fix for #2002 | Jörn Zaefferer | 2007-12-06 | 1 | -2/+5 |
| | |||||
* | Safari sometimes stops in the test suite on the ajax section when I run the ↵ | David Serduke | 2007-12-05 | 1 | -5/+15 |
| | | | | whole suite and its running on my local machine. I went ahead and put better error detection in for the test that is the culprit so it will keep going. It seems to do fine if I run it from a server. It gives xml.status as 0. Maybe this is the reason http://www.pearweb.com/javascript/XMLHttpRequest.html | ||||
* | Fixed #1419 where IE failed with .text() on an XML node. This is part of a ↵ | David Serduke | 2007-12-05 | 1 | -3/+15 |
| | | | | 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 | 3 | -5/+34 |
| | | | | | | | 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. | ||||
* | Added another relative offset test | Brandon Aaron | 2007-12-04 | 2 | -6/+5 |
| | |||||
* | Added visual marker to absolute fixture for offset testing | Brandon Aaron | 2007-12-04 | 1 | -2/+11 |
| | |||||
* | Beginnings of the offset test suite | Brandon Aaron | 2007-12-04 | 4 | -0/+136 |
| | |||||
* | Fixed #1763 by checking to see if .createElement() is available on the ↵ | David Serduke | 2007-12-04 | 1 | -4/+17 |
| | | | | 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/+6 |
| | | | | The JS error was fixed by checking to make sure 'opacity=' is in the filter before seeing what its value is. | ||||
* | fixed jsdoc for equals | Jörn Zaefferer | 2007-12-04 | 1 | -1/+1 |
| | |||||
* | Fixed #1999 by replacing the 'no-cache' parameter if it is there instead of ↵ | David Serduke | 2007-12-04 | 1 | -1/+31 |
| | | | | just appending. |