TinyMCE: include 85e22b58e9
that and quote one more use of "float". This is "reserved as future keyword by older ECMAScript specifications" according to https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar and can throw a syntax error. See #28576.
git-svn-id: https://develop.svn.wordpress.org/trunk@29261 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
dfa33f92ff
commit
9106987a3f
@ -3465,7 +3465,7 @@ define("tinymce/dom/DomQuery", [
|
|||||||
'readonly': 'readOnly'
|
'readonly': 'readOnly'
|
||||||
};
|
};
|
||||||
var cssFix = {
|
var cssFix = {
|
||||||
float: 'cssFloat'
|
'float': 'cssFloat'
|
||||||
};
|
};
|
||||||
|
|
||||||
var attrHooks = {}, cssHooks = {};
|
var attrHooks = {}, cssHooks = {};
|
||||||
@ -4868,7 +4868,7 @@ define("tinymce/dom/DomQuery", [
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (Env.ie && Env.ie < 9) {
|
if (Env.ie && Env.ie < 9) {
|
||||||
cssFix.float = 'styleFloat';
|
cssFix['float'] = 'styleFloat';
|
||||||
|
|
||||||
appendHooks(cssHooks, 'set', {
|
appendHooks(cssHooks, 'set', {
|
||||||
opacity: function(elm, value) {
|
opacity: function(elm, value) {
|
||||||
|
6
src/wp-includes/js/tinymce/tinymce.min.js
vendored
6
src/wp-includes/js/tinymce/tinymce.min.js
vendored
File diff suppressed because one or more lines are too long
@ -18,7 +18,7 @@ $wp_db_version = 29188;
|
|||||||
*
|
*
|
||||||
* @global string $tinymce_version
|
* @global string $tinymce_version
|
||||||
*/
|
*/
|
||||||
$tinymce_version = '4102-20140717';
|
$tinymce_version = '4102-20140721';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the required PHP version
|
* Holds the required PHP version
|
||||||
|
Loading…
x
Reference in New Issue
Block a user