mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-01-31 23:21:42 +03:00
fix inconsistent open-close braces, add warn when using element even when id provided
This commit is contained in:
parent
21146b6b2c
commit
d4dfcd2288
@ -59,6 +59,8 @@ $.Navigator = function( options ){
|
|||||||
if( !options.element ){
|
if( !options.element ){
|
||||||
if (!options.id) {
|
if (!options.id) {
|
||||||
options.id = 'navigator-' + $.now();
|
options.id = 'navigator-' + $.now();
|
||||||
|
}
|
||||||
|
|
||||||
this.element = $.makeNeutralElement( "div" );
|
this.element = $.makeNeutralElement( "div" );
|
||||||
options.controlOptions = {
|
options.controlOptions = {
|
||||||
anchor: $.ControlAnchor.TOP_RIGHT,
|
anchor: $.ControlAnchor.TOP_RIGHT,
|
||||||
@ -94,6 +96,8 @@ $.Navigator = function( options ){
|
|||||||
this.element.id = options.id;
|
this.element.id = options.id;
|
||||||
} else {
|
} else {
|
||||||
this.element = options.element;
|
this.element = options.element;
|
||||||
|
$.console.warn("Given option.id for Navigator was ignored since option.element was provided and is being used instead.");
|
||||||
|
|
||||||
options.controlOptions = {
|
options.controlOptions = {
|
||||||
anchor: $.ControlAnchor.NONE,
|
anchor: $.ControlAnchor.NONE,
|
||||||
attachToViewer: false,
|
attachToViewer: false,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user