Richard Gibson
|
bc7231e323
|
Apply a GibsonTransform(-55) to the #10877 fix. Closes gh-788.
|
2012-05-24 21:54:04 -04:00 |
|
Mike Sherov
|
d5e5ce5bd0
|
Fix #11311. Percents not pixels for top/left/bottom/right. Closes gh-793.
|
2012-05-24 21:39:31 -04:00 |
|
Mike Sherov
|
e0151e5827
|
Fix #10877. Make outerWidth/Height a setter. Closes gh-783.
|
2012-05-21 13:44:19 -04:00 |
|
jaubourg
|
6ad53c33d8
|
Opera announced they will start supporting the -webkit- prefix for a 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).
|
2012-04-28 16:52:32 +02:00 |
|
Corey Frang
|
58ed62ed12
|
Effects: 1.8 Animation Rewrite - thanks @mikesherov and @gibson042
|
2012-04-23 15:05:12 -04:00 |
|
Mike Sherov
|
d3b61de520
|
define curCSS without temp vars to save 10 bytes
|
2012-04-20 14:18:15 -04:00 |
|
Mike Sherov
|
3e6f94c360
|
Remove unnec. else condition
|
2012-04-19 10:43:26 -04:00 |
|
Mike Sherov
|
d7217cc29c
|
Fix 11004. getWH() box-sizing:border-box includes padding and border.
|
2012-04-10 17:26:52 -04:00 |
|
Mike Sherov
|
5376a809c0
|
Fix #10413, #10679. Fix box-sizing:border-box and add css vendor prefix support.
|
2012-04-06 08:39:59 -04:00 |
|
Oskari
|
da70ca6b96
|
Use multiply rather than divide for speed.
|
2012-04-04 22:14:33 -04:00 |
|
Mike Sherov
|
a52391aa1d
|
Fix #7986. $.support.boxModel shan't be fooled by page-level CSS.
|
2012-02-24 00:14:15 -05:00 |
|
cmc3cn
|
491d7e219b
|
Fix #11119: The curCSS function needs only 2 arguments
|
2012-01-11 22:11:22 -05:00 |
|
timmywil
|
9bea2167c4
|
When the width/height computed unit is not pixels, return that instead. Fixes #10782.
- Reordered some of css.js in preparation for jshint undef.
|
2011-12-12 10:42:10 -05:00 |
|
Richard Gibson
|
d6500cc8de
|
Fix #10858: CSS regexps recognize non-integer and explicit positive numbers.
|
2011-12-08 20:26:50 -05:00 |
|
Mike Sherov
|
8f5f1b2e6c
|
Fix #8498. Add cssHooks[prop].expand for use by animate().
|
2011-12-08 20:01:23 -05:00 |
|
Mike Sherov
|
7f6a991313
|
Fix #10639. Make percent-specified margins return px values in WebKit.
|
2011-12-06 20:32:26 -05:00 |
|
Mike Sherov
|
6aa4095ed6
|
Fix #10796. Allow IE<9 to retrieve uncomputed styles.
|
2011-12-06 16:44:32 -05:00 |
|
Mike Sherov
|
2c1d2b1a4d
|
Fix #10754. Have jQuery.swap() return the value of its callback.
|
2011-12-06 16:23:22 -05:00 |
|
Richard Gibson
|
6c2a501de4
|
Fix #5571. Setters should treat undefined as a no-op and be chainable.
|
2011-12-06 15:25:38 -05:00 |
|
Mike Sherov
|
e0a4aa415d
|
use for loop instead of jQuery.each in getWH()
|
2011-11-10 21:59:45 -05:00 |
|
Dave Methvin
|
262c32a70e
|
Streamline getComputedStyle per @JustinDrake's observation.
|
2011-11-06 15:49:45 -05:00 |
|
timmywil
|
52afe20860
|
Fix a failing effects test in IE; minor style changes in effects
|
2011-11-01 09:46:20 -04:00 |
|
Mike Sherov
|
fa0e801f52
|
Landing pull request 562. Make sure runtimeStyle isn't affected by dimensions. Fixes #9233.
More Details:
- https://github.com/jquery/jquery/pull/562
- http://bugs.jquery.com/ticket/9233
|
2011-10-28 10:53:42 -04:00 |
|
Rick Waldron
|
4fb7202e0a
|
Cleanup spacing in css.js. Fixes #10601
|
2011-10-27 15:29:09 -04:00 |
|
Mike Sherov
|
e502012c0f
|
Landing pull request 553. Fallback to elem.style for disconnected nodes in 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
|
2011-10-22 16:08:14 -04:00 |
|
Dave Methvin
|
83c08ffa1f
|
Fix #10478. Replace jQuery.isNaN with jQuery.isNumeric.
Thanks to Christian C. Salvadó for the unit tests!
|
2011-10-11 21:04:22 -04:00 |
|
timmywil
|
76a84fba94
|
Call .is(:visible) on the window or document does not thrown an error in IE. Fixes #10267.
|
2011-09-19 15:42:32 -04:00 |
|
rwldrn
|
3589a53de9
|
Landing pull request 476. Fix lint complaints about unescaped -. Follow up to #10021 Fixes #10021.
More Details:
- https://github.com/jquery/jquery/pull/476
- http://bugs.jquery.com/ticket/10021
|
2011-08-26 10:44:50 -04:00 |
|
Dave Methvin
|
5d954c1b23
|
Check for null before isNaN().
|
2011-08-16 19:30:20 -04:00 |
|
Dave Methvin
|
727d51ec9d
|
Save a few bytes, thanks @danheberden!
|
2011-08-16 19:25:32 -04:00 |
|
Dave Methvin
|
015328787c
|
Fixes #10021. Allow negative relative values for .css() (e.g., "+=-20px" ) since .animate() already allows it. Useful for when the relative value is a variable.
|
2011-08-16 18:00:44 -04:00 |
|
Corey Frang
|
d1c4f0e0d1
|
Trying .removeAttribute instead of the regexp to remove the filter attribute
|
2011-07-13 22:47:34 -05:00 |
|
gnarf
|
15cd7d83a9
|
CSS: Remove filter from style when setting opacity to 1 - Fixes #6652 - REMOVE FILTER:ALPHA(OPACITY=100) AFTER ANIMATION
|
2011-06-20 14:21:44 -05:00 |
|
Mike Sherov
|
124817e668
|
Landing pull request 413. Move border/padding checks to after width 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
|
2011-06-17 17:33:29 -04:00 |
|
rwldrn
|
5eef5917fd
|
Landing pull request 409. Adds fillOpacity to internal cssNumber. Fixes #9548.
More Details:
- https://github.com/jquery/jquery/pull/409
- http://bugs.jquery.com/ticket/9548
|
2011-06-14 15:59:22 -04:00 |
|
timmywil
|
d66c3b6d84
|
Remove fellback in width/height cssHook
|
2011-06-07 00:04:17 -04:00 |
|
timmywil
|
75203de743
|
Optimize width/height retrieval (moved logic to getWH, removed adjustWH). Supplements #9441, #9300.
|
2011-06-06 23:35:16 -04:00 |
|
Mike Sherov
|
80ad14bd14
|
Add margin after checking width. Add tests. Fixes #9441. Fixes #9300.
|
2011-06-06 23:13:37 -04:00 |
|
timmywil
|
bdce86dc2e
|
Move window/document test to dimensions for consistency
|
2011-05-25 19:59:29 -04:00 |
|
timmywil
|
edb2286544
|
Return null for outer/inner width/height calls on window/document. Fixes #7557.
|
2011-05-25 19:49:50 -04:00 |
|
rwldrn
|
408c98fb4b
|
Landing pull request 383. Relocating jQuery.camelCase to core; Fixes #9368.
More Details:
- https://github.com/jquery/jquery/pull/383
- http://bugs.jquery.com/ticket/9368
|
2011-05-25 15:10:49 -04:00 |
|
timmywil
|
a5b7c0fa33
|
Style edits for pull request 375
|
2011-05-13 12:14:31 -04:00 |
|
avaly
|
cbbd7d28e1
|
Landing pull request 375. Added test case to support #9237 Fixes #9237.
More Details:
- https://github.com/jquery/jquery/pull/375
- http://bugs.jquery.com/ticket/9237
|
2011-05-13 12:09:49 -04:00 |
|
Rick Waldron
|
3d9445e3fc
|
Landing pull request 340. Adds widows, orphans to cssNumber hash; includes tests. Fixes #8936.
More Details:
- https://github.com/jquery/jquery/pull/340
- http://bugs.jquery.com/ticket/8936
|
2011-04-22 00:02:08 -04:00 |
|
Jordan Boesch
|
35d9425969
|
removing regex
|
2011-04-15 08:53:37 -06:00 |
|
Jordan Boesch
|
c4d0cccecf
|
revert to old code, bug is invalid
|
2011-04-15 07:48:50 -06:00 |
|
timmywil
|
d4b31a15ff
|
Adds box-sizing check for IE9 inputs and buttons
|
2011-04-14 16:26:20 -04:00 |
|
jeresig
|
84712bd624
|
Fix formatting of pull 325. Fixes #4146.
|
2011-04-14 15:49:15 -04:00 |
|
Jordan Boesch
|
e64d3d4e57
|
fixing bug 4146 - round 2!
|
2011-04-13 22:30:30 -06:00 |
|
John Resig
|
978c065555
|
Merge branch 'Sub_Naming' of https://github.com/timmywil/jquery into timmywil-Sub_Naming
Conflicts:
src/core.js
src/css.js
src/event.js
|
2011-04-12 16:05:40 -04:00 |
|