r2414 - deleted an unused variable

r2414 - deleted an unused variable


Author: a.farkas.pm
Date: Mon Mar 30 12:12:20 2009
New Revision: 2414
Modified:
branches/dev/effects/tests/visual/animateClass/index.html
branches/dev/effects/ui/effects.core.js
Log:
deleted an unused variable
Modified: branches/dev/effects/tests/visual/animateClass/index.html
==============================================================================
--- branches/dev/effects/tests/visual/animateClass/index.html    (original)
+++ branches/dev/effects/tests/visual/animateClass/index.html    Mon Mar 30
12:12:20 2009
@@ -22,7 +22,7 @@
                width: 200px;
                padding: 20px;
            }
-            
+                        
            div.box.hover {
                background: #66a;
                border-color: #a66;
@@ -129,6 +129,7 @@
        <script>
            (function($){
                $(function(){
+                    
                    $('div.special')
                        .hover(function(){
                            var childs = $('*', this)
@@ -164,7 +165,7 @@
                                };
                            $('div.exclude-filter-box')
                                
-                                .stop(true, true)
+                                .stop(false, true)
                                .css(dynCss)
                                .toggleClass('exclude-filter-box-animate', {
                                    duration: 500,
@@ -225,6 +226,7 @@
        </script>
    </head>
    <body>
+        
        

Extra Options: {clearInlineStyles: true, animateChilds: '*'}:


        <div class="box special">
            <input type="text" />
Modified: branches/dev/effects/ui/effects.core.js
==============================================================================
--- branches/dev/effects/ui/effects.core.js    (original)
+++ branches/dev/effects/ui/effects.core.js    Mon Mar 30 12:12:20 2009
@@ -111,7 +111,7 @@
});
$.effects.animateClass = function(value, duration, easing, callback){
- var clearInlineStyles, animateChilds, excludeProperties,
filterCallback, queue, cb, ea;
+ var clearInlineStyles, animateChilds, filterCallback, queue, cb, ea;
    
    if (typeof duration == 'object') {
easing = duration.easing;