Merge "Only give code mirror focus for specific commands"

This commit is contained in:
jenkins-bot 2017-03-27 02:54:22 +00:00 committed by Gerrit Code Review
commit 1512e38c4e

View file

@ -227,7 +227,9 @@
}
retval = fn[ command ].call( this, options );
codeMirror.focus();
if ( command === 'setSelection' ) {
codeMirror.focus();
}
return retval;
}