mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-10 04:31:00 +00:00
added correct float css syntax for navigator in firefox and older IE
This commit is contained in:
parent
6443d57e09
commit
8509811c38
2 changed files with 6 additions and 2 deletions
|
@ -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 ));
|
||||
|
||||
|
|
|
@ -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 ));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue