simplify
This commit is contained in:
parent
1bf236a079
commit
b9d9632531
|
@ -3776,11 +3776,11 @@
|
||||||
|
|
||||||
// Custom key bindings for togglePause should be able to resume
|
// Custom key bindings for togglePause should be able to resume
|
||||||
if( typeof config.keyboard === 'object' ) {
|
if( typeof config.keyboard === 'object' ) {
|
||||||
resumeKeyCodes = resumeKeyCodes.concat( Object.keys( config.keyboard ).map( function( key ) {
|
for( var key in config.keyboard ) {
|
||||||
if( config.keyboard[key] === 'togglePause' ) {
|
if( config.keyboard[key] === 'togglePause' ) {
|
||||||
return parseInt( key, 10 );
|
resumeKeyCodes.push( parseInt( key, 10 ) );
|
||||||
}
|
}
|
||||||
}));
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if( isPaused() && resumeKeyCodes.indexOf( event.keyCode ) === -1 ) {
|
if( isPaused() && resumeKeyCodes.indexOf( event.keyCode ) === -1 ) {
|
||||||
|
|
Loading…
Reference in New Issue