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, {
timeout: $.DEFAULT_SETTINGS.timeout,
jobId: null,
jobId: null
}, options );
/**

View File

@ -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 ] );