mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 13:16:10 +03:00
added correct float css syntax for navigator in firefox and older IE
This commit is contained in:
parent
6443d57e09
commit
8509811c38
@ -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…
Reference in New Issue
Block a user