Pinking Shears: Remove some errant non-breaking spaces from a few JavaScript files.

Props francoisb.

Fixes #34658.


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


git-svn-id: http://core.svn.wordpress.org/trunk@35591 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Gary Pendergast 2015-11-12 12:04:27 +00:00
parent 23bc08f370
commit 6381e168b7
4 changed files with 4 additions and 4 deletions

View File

@ -1184,7 +1184,7 @@
$document.on( 'dfw-on.focus', mceBind ).on( 'dfw-off.focus', mceUnbind );
// Make sure the body focuses when clicking outside it.
editor.on( 'click', function( event ) {
editor.on( 'click', function( event ) {
if ( event.target === editor.getDoc().documentElement ) {
editor.focus();
}

View File

@ -24,7 +24,7 @@ window.wp = window.wp || {};
* wp.revisions.log
*
* A debugging utility for revisions. Works only when a
* debug flag is on and the browser supports it.
* debug flag is on and the browser supports it.
*/
revisions.log = function() {
if ( window.console && revisions.debug ) {

View File

@ -37,7 +37,7 @@ tinymce.PluginManager.add( 'wpeditimage', function( editor ) {
tooltip: tooltip,
icon: 'dashicon dashicons-align-' + direction,
cmd: 'alignnone' === name ? 'wpAlignNone' : 'Justify' + direction.slice( 0, 1 ).toUpperCase() + direction.slice( 1 ),
onPostRender: function() {
onPostRender: function() {
var self = this;
editor.on( 'NodeChange', function( event ) {

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-beta4-35626';
$wp_version = '4.4-beta4-35627';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.