Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Removed test for bug #206, wontfix | Jörn Zaefferer | 2006-10-02 | 1 | -6/+0 | |
| | ||||||
* | Added ifelse method, fixed bug #160 for IE6 | Jörn Zaefferer | 2006-10-02 | 1 | -0/+49 | |
| | ||||||
* | Added docs for jQuery.browser, fixed doc for prev, cleaned up tests | Jörn Zaefferer | 2006-09-30 | 1 | -170/+191 | |
| | ||||||
* | Fixed bug #180 as suggested, changing xxx.constructor == Function to typeof ↵ | Jörn Zaefferer | 2006-09-22 | 1 | -4/+4 | |
| | | | | xxx = "function" | |||||
* | Added some more tests for weird form selection expressions | Jörn Zaefferer | 2006-09-22 | 1 | -0/+3 | |
| | ||||||
* | Changed implementation of removeClass: No more regex, tested and working in ↵ | Jörn Zaefferer | 2006-09-22 | 1 | -1/+22 | |
| | | | | FF1.5, IE6 and Opera9 (tests added)- see http://jquery.com/discuss/2006-September/012088/ | |||||
* | Added tests for children() | Jörn Zaefferer | 2006-09-19 | 1 | -0/+4 | |
| | ||||||
* | Added test for feature #206 | Jörn Zaefferer | 2006-09-18 | 1 | -0/+6 | |
| | ||||||
* | Added some tests for name(), id() and title() | Jörn Zaefferer | 2006-09-17 | 1 | -0/+11 | |
| | ||||||
* | Added expressions for feature #69 (form element selectors), needs some ↵ | Jörn Zaefferer | 2006-09-17 | 1 | -2/+19 | |
| | | | | documentation in the wiki when the next official release is out | |||||
* | Added test for bug #190 | Jörn Zaefferer | 2006-09-16 | 1 | -0/+4 | |
| | ||||||
* | Fixed bug #168 | Jörn Zaefferer | 2006-09-16 | 1 | -1/+1 | |
| | ||||||
* | Fixed bug #178 | Jörn Zaefferer | 2006-09-16 | 1 | -9/+11 | |
| | ||||||
* | Added fix for bug #175; Added docs for extend(Object), for any plugin ↵ | Jörn Zaefferer | 2006-09-16 | 1 | -2/+15 | |
| | | | | developer API docs to come | |||||
* | Resolved bug #191 as won't fix, removed the failing test and changed docs ↵ | Jörn Zaefferer | 2006-09-16 | 1 | -10/+16 | |
| | | | | accordingly. | |||||
* | Fixed bug #194, added regression tests | Jörn Zaefferer | 2006-09-16 | 1 | -3/+8 | |
| | ||||||
* | Refactored test suite: All tests are now compiled into one file, runs much ↵ | Jörn Zaefferer | 2006-09-16 | 1 | -6/+6 | |
| | | | | faster and does not require ugly synchronization; Changed build.xml (tested) and Makefile (not tested!); Replaced calls to cmpOK() with ok(), removed cmpOK(); Tests can now call reset() to be able to always test against the unmodified test setup | |||||
* | Added proposed fix for bug #185 | Jörn Zaefferer | 2006-09-15 | 1 | -10/+17 | |
| | ||||||
* | Fixed bug #147, required some (ugly) modifications: changed function ↵ | Jörn Zaefferer | 2006-09-15 | 1 | -2/+2 | |
| | | | | jQuery(...){} to jQuery = function(...){}, necessary because IE parses all function name(){} declarations before executing inline code; added intro.js and outro.js to both build.xml (tested) and Makefile (not tested) to include "if(typeof window.jQuery == "undefined") { ... } | |||||
* | Fixed typo. | John Resig | 2006-09-14 | 1 | -1/+1 | |
| | ||||||
* | Added quick fix for event triggering, while passing in data. | John Resig | 2006-09-14 | 1 | -1/+4 | |
| | ||||||
* | Added test to verify bug #160, had to modify fixture (index.html) | Jörn Zaefferer | 2006-09-09 | 1 | -0/+2 | |
| | ||||||
* | Added test to verify bug #185 | Jörn Zaefferer | 2006-09-09 | 1 | -0/+2 | |
| | ||||||
* | Added test for $.find to verify bug #178 | Jörn Zaefferer | 2006-09-09 | 1 | -0/+3 | |
| | ||||||
* | Added test for both siblings() and siblings(String) to verify bug #168 | Jörn Zaefferer | 2006-09-09 | 1 | -0/+5 | |
| | ||||||
* | Added test for attr('checked', {true|false}) (bug #167) | Jörn Zaefferer | 2006-09-09 | 1 | -0/+4 | |
| | ||||||
* | Fixed documentation for bind(String, Function) - added a small fix for the ↵ | Jörn Zaefferer | 2006-09-09 | 1 | -1/+1 | |
| | | | | first example | |||||
* | Fixed documentation for bind(String, Function) | Jörn Zaefferer | 2006-09-09 | 1 | -12/+19 | |
| | ||||||
* | Fixed issue with getAttribute not existing in IE. | John Resig | 2006-09-08 | 1 | -1/+1 | |
| | ||||||
* | Added more test for attr, one for filter; Added test to check IE issue ↵ | Jörn Zaefferer | 2006-09-08 | 1 | -2/+13 | |
| | | | | $('input').attr('name', 'something'), modified fixture to test this | |||||
* | Modified test for wrap(String), added test for toggle(fn, fn) | Jörn Zaefferer | 2006-09-07 | 1 | -2/+7 | |
| | ||||||
* | Fixed bug with $.map() not showing in the docs. | John Resig | 2006-09-05 | 1 | -1/+2 | |
| | ||||||
* | Modified example for css(String) as proposed in the list (concerning ↵ | Jörn Zaefferer | 2006-09-05 | 1 | -0/+13 | |
| | | | | camlCase for dashed properties like font-weight); Modified test to cache test fixture instead of reloading it, should make the test suite run faster | |||||
* | Made a bunch of fixes to the docs, per Sam's request. Also, did some ↵ | John Resig | 2006-09-05 | 1 | -37/+87 | |
| | | | | re-organization of the order of the function names. | |||||
* | Improved test suite to reset fixture after each test, added selects to test ↵ | Jörn Zaefferer | 2006-09-04 | 1 | -9/+185 | |
| | | | | ':selected'; Added docs for index(obj); Modified is(expr) to return false for an invalid expression, changed docs, too; Added lots of testcases; Changed filename of testfiles: adding leading zeros | |||||
* | Typos | Franck Marcia | 2006-09-02 | 1 | -317/+317 | |
| | ||||||
* | Added two quick semicolon fixes. | John Resig | 2006-09-02 | 1 | -2/+2 | |
| | ||||||
* | Fixed bug with jQuery: height computation for hidden elements | Klaus Hartl | 2006-09-01 | 1 | -1/+8 | |
| | ||||||
* | Documented some more functions. | John Resig | 2006-09-01 | 1 | -3/+89 | |
| | ||||||
* | Lots of documentation overhaul - much more documented, cat output works ↵ | John Resig | 2006-09-01 | 1 | -51/+181 | |
| | | | | better now. | |||||
* | Fixed two bugs with jQuery: One with height computation, one with ↵ | John Resig | 2006-09-01 | 1 | -2/+104 | |
| | | | | .find(expr,fn) not working properly. Also, fixed a bunch of styling with the docs. Finally, added documentation for the $() function. | |||||
* | Fix check for browser.mozilla so that Safari is not flagged as mozilla. | Corey Jewett | 2006-08-31 | 1 | -1/+1 | |
| | ||||||
* | Fixed a handful of places where $() was used explicitly, rather than jQuery(). | Corey Jewett | 2006-08-31 | 1 | -6/+6 | |
| | ||||||
* | Broke >, ~, +, etc - fixed.1.0.11.0 | John Resig | 2006-08-31 | 1 | -6/+7 | |
| | ||||||
* | Added fix for broken $("../..",foo). | John Resig | 2006-08-31 | 1 | -5/+7 | |
| | ||||||
* | Fixed issue with .attr( "disabled", false ) not working properly. | John Resig | 2006-08-31 | 1 | -1/+2 | |
| | ||||||
* | Fixed issue with comment text being included in .text() results. | John Resig | 2006-08-31 | 1 | -2/+3 | |
| | ||||||
* | Fixed issue with .val() not working properly. | John Resig | 2006-08-31 | 1 | -1/+2 | |
| | ||||||
* | Apparently I accidentally removed :nth-chlid()... uhh - oops? | John Resig | 2006-08-31 | 1 | -0/+1 | |
| | ||||||
* | Fixed issue with .remove() not working correctly. | John Resig | 2006-08-31 | 1 | -1/+1 | |
| |