mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 05:43:30 +03:00
Removed extra parens
This commit is contained in:
parent
248852c15f
commit
2ba3acda38
3 changed files with 3 additions and 3 deletions
|
@ -46,7 +46,7 @@
|
|||
i;
|
||||
|
||||
$.extend( true, this, {
|
||||
id: 'controldock-'+($.now())+'-'+Math.floor(Math.random()*1000000),
|
||||
id: 'controldock-'+$.now()+'-'+Math.floor(Math.random()*1000000),
|
||||
container: $.makeNeutralElement('form'),
|
||||
controls: []
|
||||
}, options );
|
||||
|
|
|
@ -57,7 +57,7 @@ $.Navigator = function( options ){
|
|||
//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());
|
||||
options.id = 'navigator-' + $.now();
|
||||
this.element = $.makeNeutralElement( "div" );
|
||||
options.controlOptions = {anchor: $.ControlAnchor.TOP_RIGHT,
|
||||
attachToViewer: true,
|
||||
|
|
|
@ -70,7 +70,7 @@ $.ReferenceStrip = function( options ){
|
|||
//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 = 'referencestrip-' + ($.now());
|
||||
options.id = 'referencestrip-' + $.now();
|
||||
this.element = $.makeNeutralElement( "div" );
|
||||
this.element.id = options.id;
|
||||
this.element.className = 'referencestrip';
|
||||
|
|
Loading…
Add table
Reference in a new issue