Removes unnecessary trailing commas which stops google's closure compiler.

This commit is contained in:
esmondb 2014-06-14 10:15:40 +01:00
parent d9ddc5f65d
commit 59ab6562d3
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 ] );