Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Getting ready for 1.0a.1.0a | John Resig | 2006-07-01 | 1 | -9/+42 |
| | |||||
* | Added in both of Franck's suggested fixes jQuery.class and "foo" + ↵ | John Resig | 2006-06-22 | 1 | -6/+6 |
| | | | | "bar".split(","). | ||||
* | Updated global namespaces. | John Resig | 2006-06-22 | 1 | -159/+200 |
| | |||||
* | Organized the event functions. | John Resig | 2006-06-22 | 1 | -74/+74 |
| | |||||
* | Happy 100th commit, jQuery! | John Resig | 2006-06-22 | 1 | -2/+2 |
| | |||||
* | Massive update, bugs, filesize, new features - getting ready for 1.0. | John Resig | 2006-06-22 | 1 | -556/+446 |
| | |||||
* | There was an issue with my table/tbody detection. | John Resig | 2006-06-20 | 1 | -4/+7 |
| | |||||
* | Operation "Remove JSLint Changes" has begun. | John Resig | 2006-06-18 | 1 | -71/+40 |
| | |||||
* | Changed border stuff to borderTopWidth (Ticket #9) | John Resig | 2006-06-18 | 1 | -4/+4 |
| | |||||
* | $.getCSS (see bug #11) | Gilles van den Hoven | 2006-06-17 | 1 | -45/+45 |
| | |||||
* | Fixed not being able to set the disabled value of an element using .attr(). ↵ | John Resig | 2006-06-16 | 1 | -1/+1 |
| | | | | Ticket #8 | ||||
* | Fixed issues with @* and @foo selectors. Ticket #2 | John Resig | 2006-06-16 | 1 | -2/+1 |
| | |||||
* | Added Klaus' fix for accidental DOM node catches (Ticket #3). | John Resig | 2006-06-16 | 1 | -1/+1 |
| | |||||
* | You can now append and prepend into a table that doesn't have a tbody. | John Resig | 2006-06-16 | 1 | -4/+24 |
| | |||||
* | It's now possible to add <td>s and <th>s to a table, using only HTML. | John Resig | 2006-06-16 | 1 | -2/+12 |
| | |||||
* | Removed recent cssText addition, doesn't work as expected. | John Resig | 2006-06-16 | 1 | -2/+1 |
| | |||||
* | Changed the window.location hack to be more specific (and documented). | John Resig | 2006-06-16 | 1 | -1/+6 |
| | |||||
* | $.css() now accounts for borders in addition to padding when calculating the ↵ | John Resig | 2006-06-16 | 1 | -4/+9 |
| | | | | height/width of an element. | ||||
* | Added checks for the box model. | John Resig | 2006-06-16 | 1 | -1/+7 |
| | |||||
* | Fake trigger events now get passed through $.event.fix() first, to give them ↵ | John Resig | 2006-06-16 | 1 | -1/+1 |
| | | | | an extra layer of authenticity. | ||||
* | changed ID selector code | Gilles van den Hoven | 2006-06-15 | 1 | -1/+1 |
| | |||||
* | FX Queueing added. Effects no longer mess up causing weird results. | John Resig | 2006-06-15 | 1 | -2/+1 |
| | |||||
* | Fixed height/width issues that happend due to the box model, in $.css(). | John Resig | 2006-06-15 | 1 | -17/+27 |
| | |||||
* | Reverted back a $.tag change. | John Resig | 2006-06-14 | 1 | -1/+1 |
| | |||||
* | Added Mike Alsup's style/cssText fix and made a quick typeof change. | John Resig | 2006-06-13 | 1 | -2/+3 |
| | |||||
* | Fixed appending rows to a table. | John Resig | 2006-06-13 | 1 | -0/+8 |
| | |||||
* | Fixed another bug with retreiving elements by ID. | John Resig | 2006-06-11 | 1 | -1/+2 |
| | |||||
* | Fixed an issue with #id expression parsing, an issue with formatting, and ↵ | John Resig | 2006-06-11 | 1 | -19/+29 |
| | | | | removed the try{} block from around event firings. | ||||
* | changed $.execute back to eval() | Gilles van den Hoven | 2006-06-09 | 1 | -4/+2 |
| | |||||
* | Bugs fixxed: | Gilles van den Hoven | 2006-06-08 | 1 | -3/+3 |
| | | | | | | | | | - I've renamed $.eval to $.execute (since $.$$exec is allready there?) - Commited sam's form function - Removed $.fn.formValues() - Removed $.fn.update() - Removed $.fn.serialize() | ||||
* | name == id bug, second attempt | Gilles van den Hoven | 2006-06-06 | 1 | -1/+1 |
| | |||||
* | Removed unnecessary instances of === or !==. | John Resig | 2006-06-05 | 1 | -9/+9 |
| | |||||
* | ----- | Gilles van den Hoven | 2006-05-27 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | fx.js ----- added: $.fn.fadeTo Also changed ' fx.Opacity ' function so $.fn.fadeTo works. For this i changed one line, and one parameter in $.fx.Opactity: "o.io = o.now = 1;" became: "o.io = o.now = (sv || o.cur());" e.g. if there is a start value use it. Else, the current value is used. All calls to "$.fx.Opactiy" which where present in the code have now "1" as third parameter so the code doesn't break. --------- jquery.js --------- Changed line 401 to fix ' name="id" ' bug: '#': "a.id == m[2]" to: '#': "a.getAttribute('id') == m[2]" | ||||
* | Made sure that $.event.handle() always has some form of an event object. | John Resig | 2006-05-17 | 1 | -2/+5 |
| | |||||
* | Fixed bug with $.attr(), it was attempting to set attribute even if you're ↵ | John Resig | 2006-05-17 | 1 | -1/+1 |
| | | | | attempting to access a value. This was due to the !== null fix. | ||||
* | Added some final global variable tweaks - no more namespace leaking! | John Resig | 2006-05-17 | 1 | -0/+3 |
| | |||||
* | Not only does it pass the default JSLint settings, it also no longer leaks ↵ | John Resig | 2006-05-17 | 1 | -24/+28 |
| | | | | *any* global variables! | ||||
* | Fixed two quick bugs from the JSLint overhaul. | John Resig | 2006-05-16 | 1 | -2/+2 |
| | |||||
* | jQuery is now JSLint (jslint.com) compatible, save for the eval stuff. Can't ↵ | John Resig | 2006-05-16 | 1 | -139/+210 |
| | | | | | | | there b e legitamite uses for eval? | ||||
* | Safari has problems with throw? Commented out for now... | John Resig | 2006-05-12 | 1 | -2/+2 |
| | |||||
* | Aieeeeee!! removeClass bug fixed. I'm so dumb. | John Resig | 2006-05-02 | 1 | -3/+1 |
| | |||||
* | Updated licensing info. | John Resig | 2006-04-22 | 1 | -4/+6 |
| | |||||
* | Extra spaces weren't being removed with removeClass - but I haven't found a ↵ | John Resig | 2006-04-10 | 1 | -1/+3 |
| | | | | good workaround yet. | ||||
* | $().css("foo") now returns the value of $.css("foo") instead of setting to null. | John Resig | 2006-04-09 | 1 | -7/+8 |
| | |||||
* | Updated core code to mirror what's in the web version of latest. | John Resig | 2006-04-06 | 1 | -3/+3 |
| | |||||
* | Added checks to triggerEvent for optional data and element verification. ↵ | John Resig | 2006-03-27 | 1 | -3/+4 |
| | | | | Uses $.apply() now, too. | ||||
* | Fixed a bug with append and Prototype 1.5 (via Audun). | John Resig | 2006-03-23 | 1 | -2/+2 |
| | |||||
* | Fixed more formatting/tab problems. | John Resig | 2006-03-23 | 1 | -73/+71 |
| | |||||
* | I've begun the long process of fixing the messed up tab/spaces. | John Resig | 2006-03-23 | 1 | -117/+117 |
| | |||||
* | Added new parents, parent and siblings functions. | John Resig | 2006-03-22 | 1 | -16/+22 |
| | | | | | | Siblings function still needs some work. It would be nice to have an optional -or-self argument too. |