mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 13:16:10 +03:00
Merge pull request #419 from esmondb/master
Removes unnecessary trailing commas which stops google's closure compile...
This commit is contained in:
commit
e4800a9455
@ -47,7 +47,7 @@ function ImageJob ( options ) {
|
||||
|
||||
$.extend( true, this, {
|
||||
timeout: $.DEFAULT_SETTINGS.timeout,
|
||||
jobId: null,
|
||||
jobId: null
|
||||
}, options );
|
||||
|
||||
/**
|
||||
|
@ -1773,7 +1773,7 @@
|
||||
for ( i = 0; i < touchCount; i++ ) {
|
||||
gPoints.push( {
|
||||
id: event.changedTouches[ i ].identifier,
|
||||
type: 'touch',
|
||||
type: 'touch'
|
||||
} );
|
||||
}
|
||||
|
||||
@ -1925,7 +1925,7 @@
|
||||
|
||||
gPoint = {
|
||||
id: event.pointerId,
|
||||
type: getPointerType( event ),
|
||||
type: getPointerType( event )
|
||||
};
|
||||
|
||||
updatePointersCancel( tracker, event, [ gPoint ] );
|
||||
|
Loading…
Reference in New Issue
Block a user