Skip to content

Commit

Permalink
Fixed auto hide feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Pyles committed Oct 13, 2010
1 parent fcbdebe commit 1a1783d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions jquery.uniform.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Enjoy!
var divTag = $('<div />'),
spanTag = $('<span />');

if(!$el.is(':visible')){
if(!$el.css("display") == "none"){
divTag.hide();
}

Expand Down Expand Up @@ -229,7 +229,7 @@ Enjoy!
var divTag = $('<div />'),
spanTag = $('<span />');

if(!$el.is(':visible')){
if(!$el.css("display") == "none"){
divTag.hide();
}

Expand Down Expand Up @@ -303,7 +303,7 @@ Enjoy!
var divTag = $('<div />'),
spanTag = $('<span />');

if(!$el.is(':visible')){
if(!$el.css("display") == "none"){
divTag.hide();
}

Expand Down Expand Up @@ -382,7 +382,7 @@ Enjoy!
filenameTag = $('<span>'+options.fileDefaultText+'</span>'),
btnTag = $('<span>'+options.fileBtnText+'</span>');

if(!$el.is(':visible')){
if(!$el.css("display") == "none"){
divTag.hide();
}

Expand Down
2 changes: 1 addition & 1 deletion jquery.uniform.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1a1783d

Please sign in to comment.