aboutsummaryrefslogtreecommitdiffstats
path: root/src/css.js
Commit message (Collapse)AuthorAgeFilesLines
...
* Strips IIFEs from modules; Always require built jQuery for tests.Rick Waldron2012-06-041-48/+45
|
* No need to dasherize and use getPropertyValue, closes gh-805.Mike Sherov2012-06-011-11/+2
| | | | All invocations of curCSS are already camelcased. See the PR for discussion.
* Fix #11787: Remove jQuery.curCSS, closes gh-801.Richard Gibson2012-05-311-3/+0
|
* Fix #11767. Modularize build and unit tests for exluding effects.Richard Gibson2012-05-281-10/+124
| | | | Closes gh-785. To build a version of jQuery without effects, use `grunt build:*:*:-effects`. The unit tests feature-check for the interfaces and skip the unit tests for effects if they don't detect it.
* Apply a GibsonTransform(-55) to the #10877 fix. Closes gh-788.Richard Gibson2012-05-241-48/+59
|
* Fix #11311. Percents not pixels for top/left/bottom/right. Closes gh-793.Mike Sherov2012-05-241-1/+4
|
* Fix #10877. Make outerWidth/Height a setter. Closes gh-783.Mike Sherov2012-05-211-39/+55
|
* Opera announced they will start supporting the -webkit- prefix for a ↵jaubourg2012-04-281-1/+1
| | | | selected set of css properties. Let's put the inspection of -webkit- prefix properties as the last one in case this propagates to the style object and/or other browsers (the cssPrefixes array is inspected from right to left).
* Effects: 1.8 Animation Rewrite - thanks @mikesherov and @gibson042Corey Frang2012-04-231-8/+16
|
* define curCSS without temp vars to save 10 bytesMike Sherov2012-04-201-10/+4
|
* Remove unnec. else conditionMike Sherov2012-04-191-1/+1
|
* Fix 11004. getWH() box-sizing:border-box includes padding and border.Mike Sherov2012-04-101-25/+37
|
* Fix #10413, #10679. Fix box-sizing:border-box and add css vendor prefix support.Mike Sherov2012-04-061-37/+72
|
* Use multiply rather than divide for speed.Oskari2012-04-041-1/+1
|
* Fix #7986. $.support.boxModel shan't be fooled by page-level CSS.Mike Sherov2012-02-241-1/+1
|
* Fix #11119: The curCSS function needs only 2 argumentscmc3cn2012-01-111-3/+3
|
* When the width/height computed unit is not pixels, return that instead. ↵timmywil2011-12-121-84/+92
| | | | | | Fixes #10782. - Reordered some of css.js in preparation for jshint undef.
* Fix #10858: CSS regexps recognize non-integer and explicit positive numbers.Richard Gibson2011-12-081-15/+7
|
* Fix #8498. Add cssHooks[prop].expand for use by animate().Mike Sherov2011-12-081-17/+43
|
* Fix #10639. Make percent-specified margins return px values in WebKit.Mike Sherov2011-12-061-2/+13
|
* Fix #10796. Allow IE<9 to retrieve uncomputed styles.Mike Sherov2011-12-061-3/+3
|
* Fix #10754. Have jQuery.swap() return the value of its callback.Mike Sherov2011-12-061-14/+11
|
* Fix #5571. Setters should treat `undefined` as a no-op and be chainable.Richard Gibson2011-12-061-7/+2
|
* use for loop instead of jQuery.each in getWH()Mike Sherov2011-11-101-11/+13
|
* Streamline getComputedStyle per @JustinDrake's observation.Dave Methvin2011-11-061-5/+2
|
* Fix a failing effects test in IE; minor style changes in effectstimmywil2011-11-011-3/+5
|
* Landing pull request 562. Make sure runtimeStyle isn't affected by ↵Mike Sherov2011-10-281-2/+3
| | | | | | | | dimensions. Fixes #9233. More Details: - https://github.com/jquery/jquery/pull/562 - http://bugs.jquery.com/ticket/9233
* Cleanup spacing in css.js. Fixes #10601Rick Waldron2011-10-271-2/+2
|
* Landing pull request 553. Fallback to elem.style for disconnected nodes in ↵Mike Sherov2011-10-221-0/+4
| | | | | | | | | width/height retrieval. Fixes #8388. More Details: - https://github.com/jquery/jquery/pull/553 - http://bugs.jquery.com/ticket/10254 - http://bugs.jquery.com/ticket/8388
* Fix #10478. Replace jQuery.isNaN with jQuery.isNumeric.Dave Methvin2011-10-111-1/+1
| | | | Thanks to Christian C. Salvadó for the unit tests!
* Call .is(:visible) on the window or document does not thrown an error in IE. ↵timmywil2011-09-191-1/+1
| | | | Fixes #10267.
* Landing pull request 476. Fix lint complaints about unescaped -. Follow up ↵rwldrn2011-08-261-1/+1
| | | | | | | | to #10021 Fixes #10021. More Details: - https://github.com/jquery/jquery/pull/476 - http://bugs.jquery.com/ticket/10021
* Check for null before isNaN().Dave Methvin2011-08-161-1/+1
|
* Save a few bytes, thanks @danheberden!Dave Methvin2011-08-161-2/+2
|
* Fixes #10021. Allow negative relative values for `.css()` (e.g., ↵Dave Methvin2011-08-161-9/+8
| | | | `"+=-20px"`) since `.animate()` already allows it. Useful for when the relative value is a variable.
* Trying .removeAttribute instead of the regexp to remove the filter attributeCorey Frang2011-07-131-2/+2
|
* CSS: Remove filter from style when setting opacity to 1 - Fixes #6652 - ↵gnarf2011-06-201-6/+17
| | | | REMOVE FILTER:ALPHA(OPACITY=100) AFTER ANIMATION
* Landing pull request 413. Move border/padding checks to after width ↵Mike Sherov2011-06-171-11/+10
| | | | | | | | | | validation to avoid unnecessary fallbacks. Fixes #9598. More Details: - https://github.com/jquery/jquery/pull/413 - http://bugs.jquery.com/ticket/9300 - http://bugs.jquery.com/ticket/9441 - http://bugs.jquery.com/ticket/9598
* Landing pull request 409. Adds fillOpacity to internal cssNumber. Fixes #9548.rwldrn2011-06-141-4/+5
| | | | | | More Details: - https://github.com/jquery/jquery/pull/409 - http://bugs.jquery.com/ticket/9548
* Remove fellback in width/height cssHooktimmywil2011-06-071-1/+1
|
* Optimize width/height retrieval (moved logic to getWH, removed adjustWH). ↵timmywil2011-06-061-62/+39
| | | | Supplements #9441, #9300.
* Add margin after checking width. Add tests. Fixes #9441. Fixes #9300.Mike Sherov2011-06-061-21/+46
|
* Move window/document test to dimensions for consistencytimmywil2011-05-251-5/+0
|
* Return null for outer/inner width/height calls on window/document. Fixes #7557.timmywil2011-05-251-1/+5
|
* Landing pull request 383. Relocating jQuery.camelCase to core; Fixes #9368.rwldrn2011-05-251-10/+1
| | | | | | More Details: - https://github.com/jquery/jquery/pull/383 - http://bugs.jquery.com/ticket/9368
* Style edits for pull request 375timmywil2011-05-131-1/+1
|
* Landing pull request 375. Added test case to support #9237 Fixes #9237.avaly2011-05-131-0/+2
| | | | | | More Details: - https://github.com/jquery/jquery/pull/375 - http://bugs.jquery.com/ticket/9237
* Landing pull request 340. Adds widows, orphans to cssNumber hash; includes ↵Rick Waldron2011-04-221-1/+3
| | | | | | | | tests. Fixes #8936. More Details: - https://github.com/jquery/jquery/pull/340 - http://bugs.jquery.com/ticket/8936
* removing regexJordan Boesch2011-04-151-1/+0
|
* revert to old code, bug is invalidJordan Boesch2011-04-151-33/+12
|