Remove unused vars. See #31627.

Built from https://develop.svn.wordpress.org/trunk@31923


git-svn-id: http://core.svn.wordpress.org/trunk@31902 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2015-03-30 02:50:27 +00:00
parent f128f08c2c
commit 8ff664171d
2 changed files with 3 additions and 3 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;
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.2-beta3-31922';
$wp_version = '4.2-beta3-31923';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.