Remove unused vars. See #31627.

git-svn-id: https://develop.svn.wordpress.org/trunk@31923 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2015-03-30 02:49:23 +00:00
parent 867237ca49
commit c932690b40
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
( function( tinymce, wp, twemoji ) {
tinymce.PluginManager.add( 'wpemoji', function( editor ) {
var typing, match,
var typing,
env = tinymce.Env,
ua = window.navigator.userAgent,
isWin = ua.indexOf( 'Windows' ) > -1,
@ -53,7 +53,7 @@
typing = ( event.type === 'keydown' );
} );
editor.on( 'input', function( event ) {
editor.on( 'input', function() {
if ( typing ) {
return;
}