aboutsummaryrefslogtreecommitdiffstats
path: root/src/css.js
Commit message (Expand)AuthorAgeFilesLines
...
* Only set height/width if it's a non-negative number (don't set it to 0).jeresig2010-09-091-1/+5
* 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 is...jeresig2010-09-091-6/+5
* Make sure that string values are returned from the height/width CSS properties.jeresig2010-09-091-1/+1
* Landing a bunch of bug fixes from furf's pull request at eefcbaebb31b89b5eb36...jeresig2010-09-091-6/+10
* Make sure that jQuery works even when the individual modules are loaded separ...jeresig2010-09-081-0/+4
* 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, jQuer...John Resig2010-09-051-69/+45
* 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 handl...Brandon Aaron2010-09-021-32/+54
* Only attempt to use the IE technique for setting opacity if the filter proper...John Resig2010-08-261-1/+1
* Made it so that you no longer need to build jQuery in order to run the test s...jeresig2010-03-231-1/+1
* More changes to get jQuery in line with JSLint.jeresig2010-03-011-1/+1
* Made some code tweaks related to running jQuery through JSLint (thanks to Lor...jeresig2010-03-011-24/+29
* Standardize on using double-quotes for string literals.jeresig2009-12-211-3/+3
* Made a number of spacing changes to bring the code more-inline with the jQuer...jeresig2009-12-211-3/+9
* Make sure that the defaultView exists before attempting to get at the compute...John Resig2009-12-091-1/+7
* Made sure that css('width') and height returned string values, not numerical ...John Resig2009-12-091-2/+2
* Made sure that css() in IE handles negative non-px values correctly. Fixes #3...jeresig2009-12-051-2/+2
* Minor syntactical changes to :visible and :hidden.jeresig2009-12-051-8/+8
* Fixes a bug I introducedYehuda Katz2009-12-041-1/+1
* Removing unnecessary parens from :hidden.jeresig2009-12-031-3/+4
* Fix css("opacity") to not clobber other filters in IE. Closes #4707.Yehuda Katz2009-12-011-2/+3
* added missing radix parameter for parseInt()Karl Swedberg2009-11-281-1/+1
* Landing tweak from 'haruka' that fixes non-pixel fontSize values in IE. Fixes...John Resig2009-11-111-2/+2
* Moved a bunch of methods out of the jQuery-specific Sizzle code into more-app...John Resig2009-10-261-0/+16
* jquery core: Closes #5189. Added a generic function to handle getting/setting...Ariel Flesler2009-09-091-42/+8
* Broke out some of the inline RegExp from css.js. Goes towards fixing #4111.John Resig2009-07-191-12/+20
* Fixed various formatting issues in css.js.John Resig2009-07-191-23/+39
* Move cases of .replace(re, Function) out from inline (to avoid being redeclar...John Resig2009-07-191-7/+6
* Standardizing on .test() and .exec() - moving away from using .match() for Re...John Resig2009-07-191-3/+3
* Added test for css(String, Function) and css(Object) where values are Functio...Yehuda Katz2009-07-121-3/+8
* tidy up fix for #3981, thanks matt kruseBrandon Aaron2009-05-141-9/+3
* opacity is now retrieved from stylesheet in IE. fixes #3981Brandon Aaron2009-05-141-3/+9
* fix for #4216. css now ignores negative numbers for width and height when pas...Brandon Aaron2009-04-221-4/+4
* fix for #3546. css now works with other windows than just the one it was load...Brandon Aaron2009-04-221-4/+4
* decoupling styles retrieval from the attr methodBrandon Aaron2009-03-221-0/+205