mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-15 07:05:37 +01:00
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:
parent
f128f08c2c
commit
8ff664171d
@ -1,6 +1,6 @@
|
|||||||
( function( tinymce, wp, twemoji ) {
|
( function( tinymce, wp, twemoji ) {
|
||||||
tinymce.PluginManager.add( 'wpemoji', function( editor ) {
|
tinymce.PluginManager.add( 'wpemoji', function( editor ) {
|
||||||
var typing, match,
|
var typing,
|
||||||
env = tinymce.Env,
|
env = tinymce.Env,
|
||||||
ua = window.navigator.userAgent,
|
ua = window.navigator.userAgent,
|
||||||
isWin = ua.indexOf( 'Windows' ) > -1,
|
isWin = ua.indexOf( 'Windows' ) > -1,
|
||||||
@ -53,7 +53,7 @@
|
|||||||
typing = ( event.type === 'keydown' );
|
typing = ( event.type === 'keydown' );
|
||||||
} );
|
} );
|
||||||
|
|
||||||
editor.on( 'input', function( event ) {
|
editor.on( 'input', function() {
|
||||||
if ( typing ) {
|
if ( typing ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user