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, {
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 ] );