Make it slower while testing for easier debugging
git-svn-id: https://develop.svn.wordpress.org/trunk@2754 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
593b6b49ab
commit
3dad237c8f
@ -5,7 +5,7 @@
|
|||||||
* $Date: 2005/06/14 18:55:34 $
|
* $Date: 2005/06/14 18:55:34 $
|
||||||
*
|
*
|
||||||
* @author Moxiecode
|
* @author Moxiecode
|
||||||
* @copyright Copyright © 2004, Moxiecode Systems AB, All rights reserved.
|
* @copyright Copyright 2004, Moxiecode Systems AB, All rights reserved.
|
||||||
*
|
*
|
||||||
* This file compresses the TinyMCE JavaScript using GZip and
|
* This file compresses the TinyMCE JavaScript using GZip and
|
||||||
* enables the browser to do two requests instead of one for each .js file.
|
* enables the browser to do two requests instead of one for each .js file.
|
||||||
@ -16,7 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// General options
|
// General options
|
||||||
$suffix = ""; // Set to "_src" to use source version
|
$suffix = "_src"; // Set to "_src" to use source version
|
||||||
$expiresOffset = 3600 * 24 * 10; // 10 days util client cache expires
|
$expiresOffset = 3600 * 24 * 10; // 10 days util client cache expires
|
||||||
|
|
||||||
// Get data to load
|
// Get data to load
|
||||||
|
4
wp-admin/tinymce/tiny_mce_src.js
vendored
4
wp-admin/tinymce/tiny_mce_src.js
vendored
@ -4,7 +4,7 @@
|
|||||||
* $Date: 2005/06/23 12:04:41 $
|
* $Date: 2005/06/23 12:04:41 $
|
||||||
*
|
*
|
||||||
* @author Moxiecode
|
* @author Moxiecode
|
||||||
* @copyright Copyright © 2004, Moxiecode Systems AB, All rights reserved.
|
* @copyright Copyright 2004, Moxiecode Systems AB, All rights reserved.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function TinyMCE() {
|
function TinyMCE() {
|
||||||
@ -531,7 +531,7 @@ TinyMCE.prototype._createIFrame = function(replace_element) {
|
|||||||
iframe.setAttribute("leftMargin", "0");
|
iframe.setAttribute("leftMargin", "0");
|
||||||
iframe.setAttribute("topMargin", "0");
|
iframe.setAttribute("topMargin", "0");
|
||||||
iframe.setAttribute("width", tinyMCE.settings['area_width']);
|
iframe.setAttribute("width", tinyMCE.settings['area_width']);
|
||||||
iframe.setAttribute("height", tinyMCE.settings['area_height']);
|
iframe.setAttribute("height", "98%");
|
||||||
iframe.setAttribute("allowtransparency", "true");
|
iframe.setAttribute("allowtransparency", "true");
|
||||||
|
|
||||||
if (tinyMCE.settings["auto_resize"])
|
if (tinyMCE.settings["auto_resize"])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user