diff --git a/src/navigator.js b/src/navigator.js index 81993b74..954ec8d0 100644 --- a/src/navigator.js +++ b/src/navigator.js @@ -55,15 +55,16 @@ $.Navigator = function( options ){ navigatorSize; //We may need to create a new element and id if they did not - //provide the id for the existing element - if( !options.id ){ - options.id = 'navigator-' + $.now(); - this.element = $.makeNeutralElement( "div" ); - options.controlOptions = { - anchor: $.ControlAnchor.TOP_RIGHT, - attachToViewer: true, - autoFade: options.autoFade - }; + //provide the id for the existing element or the element itself + if( !options.element ){ + if( !options.id ){ + options.id = 'navigator-' + $.now(); + this.element = $.makeNeutralElement( "div" ); + options.controlOptions = { + anchor: $.ControlAnchor.TOP_RIGHT, + attachToViewer: true, + autoFade: options.autoFade + }; if( options.position ){ if( 'BOTTOM_RIGHT' === options.position ){ @@ -81,17 +82,24 @@ $.Navigator = function( options ){ options.controlOptions.height = options.height; options.controlOptions.width = options.width; } - } + } else { + this.element = document.getElementById( options.id ); + options.controlOptions = { + anchor: $.ControlAnchor.NONE, + attachToViewer: false, + autoFade: false + }; + } + this.element.id = options.id; } else { - this.element = document.getElementById( options.id ); + this.element = options.element; options.controlOptions = { anchor: $.ControlAnchor.NONE, attachToViewer: false, autoFade: false }; } - this.element.id = options.id; this.element.className += ' navigator'; options = $.extend( true, {