Merge pull request #419 from esmondb/master

Removes unnecessary trailing commas which stops google's closure compile...
This commit is contained in:
iangilman 2014-06-16 09:11:24 -07:00
commit e4800a9455
2 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ function ImageJob ( options ) {
$.extend( true, this, { $.extend( true, this, {
timeout: $.DEFAULT_SETTINGS.timeout, timeout: $.DEFAULT_SETTINGS.timeout,
jobId: null, jobId: null
}, options ); }, options );
/** /**

View File

@ -1773,7 +1773,7 @@
for ( i = 0; i < touchCount; i++ ) { for ( i = 0; i < touchCount; i++ ) {
gPoints.push( { gPoints.push( {
id: event.changedTouches[ i ].identifier, id: event.changedTouches[ i ].identifier,
type: 'touch', type: 'touch'
} ); } );
} }
@ -1925,7 +1925,7 @@
gPoint = { gPoint = {
id: event.pointerId, id: event.pointerId,
type: getPointerType( event ), type: getPointerType( event )
}; };
updatePointersCancel( tracker, event, [ gPoint ] ); updatePointersCancel( tracker, event, [ gPoint ] );