Merge "Simplify setTimeout"

This commit is contained in:
jenkins-bot 2017-09-11 18:57:43 +00:00 committed by Gerrit Code Review
commit dba972cf9c

View file

@ -502,7 +502,7 @@
if ( !useCodeMirror ) { if ( !useCodeMirror ) {
// Wait for DOM before loading our popup // Wait for DOM before loading our popup
$( function () { $( function () {
window.setTimeout( function () { handlePopup(); }, 500 ); setTimeout( handlePopup, 500 );
} ); } );
} }
} }