]> source.dussan.org Git - jquery-ui.git/commitdiff
fix for clip to better work with images (animates wrapper for images only)
authorAaron Eisenberger <aaronchi@gmail.com>
Tue, 24 Jun 2008 13:44:28 +0000 (13:44 +0000)
committerAaron Eisenberger <aaronchi@gmail.com>
Tue, 24 Jun 2008 13:44:28 +0000 (13:44 +0000)
ui/effects.clip.js

index e45d7991878125959ddf2641a79fcd6d6d64e35e..8132896864c1ffd655852cdc062aa82a39e3668d 100644 (file)
@@ -17,7 +17,7 @@ $.effects.clip = function(o) {
        return this.queue(function() {
 
                // Create element
-               var el = $(this), props = ['position','top','left'];
+               var el = $(this), props = ['position','top','left','height','width'];
                
                // Set options
                var mode = $.effects.setMode(el, o.options.mode || 'hide'); // Set Mode
@@ -26,12 +26,13 @@ $.effects.clip = function(o) {
                // Adjust
                $.effects.save(el, props); el.show(); // Save & Show
                var wrapper = $.effects.createWrapper(el).css({overflow:'hidden'}); // Create Wrapper
+               var animate = el[0].tagName == 'IMG' ? wrapper : el;
                var ref = {
                        size: (direction == 'vertical') ? 'height' : 'width',
                        position: (direction == 'vertical') ? 'top' : 'left'
                };
                var distance = (direction == 'vertical') ? wrapper.height() : wrapper.width();
-               if(mode == 'show') { wrapper.css(ref.size, 0); wrapper.css(ref.position, distance / 2); } // Shift
+               if(mode == 'show') { animate.css(ref.size, 0); animate.css(ref.position, distance / 2); } // Shift
                
                // Animation
                var animation = {};
@@ -39,7 +40,7 @@ $.effects.clip = function(o) {
                animation[ref.position] = mode == 'show' ? 0 : distance / 2;
                        
                // Animate
-               wrapper.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() {
+               animate.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() {
                        if(mode == 'hide') el.hide(); // Hide
                        $.effects.restore(el, props); $.effects.removeWrapper(el); // Restore
                        if(o.callback) o.callback.apply(el[0], arguments); // Callback