Ticket #60415: 60415.8.patch
File 60415.8.patch, 944 bytes (added by , 9 months ago) |
---|
-
wp-includes/js/colorpicker.js
284 284 this.getXYPosition(anchorname); 285 285 this.x += this.offsetX; 286 286 this.y += this.offsetY; 287 if (!this.populated && (this.contents != "")) {287 if (!this.populated && (this.contents !== "")) { 288 288 this.populated = true; 289 289 this.refresh(); 290 290 } -
wp-includes/js/tinymce/utils/form_utils.js
129 129 var stylesAr = styles.split(';'); 130 130 131 131 for (var i = 0; i < stylesAr.length; i++) { 132 if (stylesAr != "") {132 if (stylesAr !== "") { 133 133 var key, value; 134 134 135 135 key = stylesAr[i].split('=')[0];