mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Fix for #263.
This commit is contained in:
parent
016bd18ba3
commit
8526de137a
@ -479,7 +479,7 @@ jQuery.extend({
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Simple 'show' function
|
// Simple 'show' function
|
||||||
z.show = function( p ){
|
z.show = function(){
|
||||||
if ( !z.el.orig ) z.el.orig = {};
|
if ( !z.el.orig ) z.el.orig = {};
|
||||||
|
|
||||||
// Remember where we started, so that we can go back to it later
|
// Remember where we started, so that we can go back to it later
|
||||||
@ -546,7 +546,7 @@ jQuery.extend({
|
|||||||
// Reset the property, if the item has been hidden
|
// Reset the property, if the item has been hidden
|
||||||
if ( z.o.hide ) {
|
if ( z.o.hide ) {
|
||||||
for ( var p in z.el.curAnim ) {
|
for ( var p in z.el.curAnim ) {
|
||||||
if (p == "opacity" && jQuery.browser.msie)
|
if (p == "opacity")
|
||||||
jQuery.attr(y, p, z.el.orig[p]);
|
jQuery.attr(y, p, z.el.orig[p]);
|
||||||
else
|
else
|
||||||
y[ p ] = z.el.orig[p] + "px";
|
y[ p ] = z.el.orig[p] + "px";
|
||||||
|
Loading…
Reference in New Issue
Block a user