aboutsummaryrefslogtreecommitdiffstats
path: root/src/effects/Tween.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/effects/Tween.js')
-rw-r--r--src/effects/Tween.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/effects/Tween.js b/src/effects/Tween.js
index f8c847f97..0c5fe67d3 100644
--- a/src/effects/Tween.js
+++ b/src/effects/Tween.js
@@ -98,16 +98,6 @@ Tween.propHooks = {
}
};
-// Support: IE <=9 only
-// Panic based approach to setting things on disconnected nodes
-Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
- set: function( tween ) {
- if ( tween.elem.nodeType && tween.elem.parentNode ) {
- tween.elem[ tween.prop ] = tween.now;
- }
- }
-};
-
jQuery.easing = {
linear: function( p ) {
return p;