aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Applied the RegExp issues reported by Jeff Robinson here: ↵jeresig2010-09-228-50/+66
| | | | http://jmrware.com/articles/2010/jqueryregex/jQueryRegexes.html Additionally broke out all remaining inline RegExp. Fixes #7062.
* Re-work the document scoping.jeresig2010-09-222-3/+2
|
* Make sure the data- number has at least one number in it before passing to ↵jeresig2010-09-221-1/+1
| | | | isNaN. Thanks to @cms in 8ebb9b22df32fe5739a48087b6e33abb9f5cda49 for a heads-up.
* Make sure that non-px values aren't manipulated before input to height/width.John Resig2010-09-211-1/+1
|
* Fix bug with the readyWait DOM ready addition.John Resig2010-09-211-1/+1
|
* Scratch that, just punting on Opera and 304s for now - there may not be a ↵John Resig2010-09-211-7/+3
| | | | good solution here. Fixes #6060.
* Use a different workaround for detecting when Opera finds a status 304 page. ↵John Resig2010-09-211-3/+5
| | | | Fixes #6060.
* Escape RegExp braces to sooth JSLint's temper.jeresig2010-09-211-1/+1
|
* Switch to using isNaN instead of RegExp for data-.jeresig2010-09-211-2/+1
|
* Handle some additional data- number edge cases.jeresig2010-09-211-1/+1
|
* Make sure that the data- import also supports arrays.jeresig2010-09-211-1/+1
|
* Added in support for basic JSON object parsing of data- attributes.John Resig2010-09-211-6/+10
|
* Make sure that undefined is returned for not found data- attributes, not null.John Resig2010-09-211-1/+4
|
* Tweaked the data number RegExp some to handle some other edge cases.John Resig2010-09-211-1/+1
|
* Fixing the problem with data-* based numbers as mention by @jasonwebster in ↵jeresig2010-09-201-1/+1
| | | | 20673d7.
* Pull data-* attributes into .data(). Original code by Andrée Hasson and ↵John Resig2010-09-201-1/+17
| | | | Paul Irish. Fixes #6921.
* Allow plugins to delay the exeuction of the ready event. Delay the ready ↵John Resig2010-09-201-2/+16
| | | | event by calling: jQuery.readyWait++ and force the event to fire by doing: jQuery.ready(true). Fixes #6781.
* Removing extra arg.jeresig2010-09-201-1/+1
|
* No need to set returnValue if preventDefault exists. Thanks kangax for the ↵jeresig2010-09-201-2/+4
| | | | catch.
* Derp, had parseInt on the brain. Thanks karbassi in ↵John Resig2010-09-172-4/+4
| | | | 6541eb9d80db42c6ced396fcd198228bff9ec7f1.
* Fix trailing arg.John Resig2010-09-171-1/+1
|
* Simplifying the camelCase logic used in the CSS and Effects modules.John Resig2010-09-172-9/+8
|
* Cleaning up some un-needed CSS code and adding back a temporary (deprecated) ↵John Resig2010-09-172-9/+10
| | | | curCSS method.
* Merge branch 'csshooks'John Resig2010-09-176-158/+200
|\
| * jQuery.css() returns a string value - handle this properly in the animation ↵John Resig2010-09-171-1/+1
| | | | | | | | code.
| * Make sure that empty height/width values are still set.John Resig2010-09-171-4/+9
| |
| * Split apart jQuery.css into jQuery.css (computed values) and jQuery.style ↵jeresig2010-09-164-50/+78
| | | | | | | | (currently set values).
| * Making some more adjustments to handle auto CSS properties.John Resig2010-09-132-3/+3
| |
| * Only set height/width if it's a non-negative number (don't set it to 0).jeresig2010-09-091-1/+5
| |
| * Make sure that height/width methods return numbers instead of strings.jeresig2010-09-091-3/+3
| |
| * Another logic bug caught by furf in ad950c8c5992937640a1e1aca8d63bb476b001f6.jeresig2010-09-091-1/+1
| |
| * Make sure that the CSS hook getter isn't called if a forced computed style ↵jeresig2010-09-091-6/+5
| | | | | | | | is done.
| * Adding in a couple private variables to effects.js that were in css.js.jeresig2010-09-091-1/+6
| |
| * Make sure that string values are returned from the height/width CSS properties.jeresig2010-09-091-1/+1
| |
| * Merge branch 'master' into csshooksjeresig2010-09-093-9/+9
| |\ | | | | | | | | | | | | Conflicts: src/css.js
| * | Landing a bunch of bug fixes from furf's pull request at ↵jeresig2010-09-091-6/+10
| | | | | | | | | | | | eefcbaebb31b89b5eb360cd5ec6165b89c84e75f.
| * | Make sure that jQuery works even when the individual modules are loaded ↵jeresig2010-09-0812-2/+50
| | | | | | | | | | | | separately AND jQuery.noConflict(true) is used. Fixes #7011.
| * | Broke more of the property-specific CSS logic out of the jQuery.css() function.John Resig2010-09-051-30/+34
| | |
| * | First pass at unifying the various CSS methods in jQuery (jQuery.style, ↵John Resig2010-09-055-94/+66
| | | | | | | | | | | | jQuery.curCSS, and jQuery.css are now all under jQuery.css).
| * | Broke apart some of the browser-specific logic for CSS handling.John Resig2010-09-051-95/+93
| | |
| * | Some more minor formatting tweaks.John Resig2010-09-041-4/+12
| | |
| * | Tweaking the formatting from the previous commit.John Resig2010-09-041-6/+4
| | |
| * | First look at css hooks. These hooks provide a way to change how jQuery ↵Brandon Aaron2010-09-021-32/+54
| | | | | | | | | | | | | | | | | | handles getting and setting certain css properties. This means normalizing properties like background-position can easily be done via plugins. They are similar in concept to the special event hooks. Return false from the hook to revert control back to jQuery's normal processes for getting and setting certain css properties.
* | | Bringing in the rdashAlpha/fcamelCase private var tweaks from the csshooks ↵John Resig2010-09-171-1/+6
| | | | | | | | | | | | branch.
* | | Wrap the core return in parens to fix a confused JSLint.jeresig2010-09-141-1/+1
| | |
* | | Add a flag to verify if a browser supports some form of XHR request. Fixes ↵John Resig2010-09-131-0/+3
| |/ |/| | | | | #7030.
* | Removing extraneous argument.jeresig2010-09-091-1/+1
| |
* | Make sure that jQuery is being exposed outside of core (this will be ↵jeresig2010-09-091-2/+2
| | | | | | | | stripped during the build process). Follow-up to #7011.
* | Make sure that the removeEvent and buildFragment private functions are ↵jeresig2010-09-084-8/+8
| | | | | | | | exposed (to help with access across modules). The final API for each of these is very much in flux and will likely change before the final release. Fixes #7011.
* | Make sure that jQuery works even when the individual modules are loaded ↵jeresig2010-09-0812-1/+49
|/ | | | separately AND jQuery.noConflict(true) is used. Fixes #7011.