added correct float css syntax for navigator in firefox and older IE

This commit is contained in:
thatcher 2012-03-20 02:26:34 -04:00
parent 6443d57e09
commit 8509811c38
2 changed files with 6 additions and 2 deletions

View File

@ -4202,7 +4202,9 @@ $.Navigator = function( options ){
style.border = '1px solid #900';
style.outline = '2px auto #900';
style.background = 'transparent';
style.float = 'left';
style.float = 'left'; //Webkit
style.cssFloat = 'left'; //Firefox
style.floatStyle = 'left'; //IE
style.zIndex = 999999999;
}( this.displayRegion.style ));

View File

@ -57,7 +57,9 @@ $.Navigator = function( options ){
style.border = '1px solid #900';
style.outline = '2px auto #900';
style.background = 'transparent';
style.float = 'left';
style.float = 'left'; //Webkit
style.cssFloat = 'left'; //Firefox
style.floatStyle = 'left'; //IE
style.zIndex = 999999999;
}( this.displayRegion.style ));