Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/tinymce/jscripts/tiny_mce/plugins/zoom
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17564/phpslash-dev/public_html/scripts/tinymce/jscripts/tiny_mce/plugins/zoom
Added Files:
editor_plugin.js readme.txt
Log Message:
complete tinyMCE addition
--- NEW FILE: editor_plugin.js ---
/**
* Returns the HTML contents of the zoom control.
*/
function TinyMCE_zoom_getControlHTML(control_name) {
if (!tinyMCE.isMSIE)
return "";
switch (control_name) {
case "zoom":
return '<select id="{$editor_id}_formatSelect" name="{$editor_id}_zoomSelect" onchange="tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mceZoom\',false,this.options[this.selectedIndex].value);" class="mceSelectList">\
<option value="100%">100%</option>\
<option value="150%">150%</option>\
<option value="200%">200%</option>\
<option value="250%">250%</option>\
</select>';
}
return "";
}
/**
* Executes the mceZoom command.
*/
function TinyMCE_zoom_execCommand(editor_id, element, command, user_interface, value) {
// Handle commands
switch (command) {
case "mceZoom":
tinyMCE._getInstanceById(editor_id).contentDocument.body.style.zoom = value;
tinyMCE._getInstanceById(editor_id).contentDocument.body.style.mozZoom = value;
return true;
}
// Pass to next handler in chain
return false;
}
--- NEW FILE: readme.txt ---
Zoom plugin for TinyMCE
--------------------------
About:
Adds a zoom drop list in MSIE, this plugin was mostly created to
show how to add custom droplists as plugins.
Installation instructions:
* Copy the zoom directory to the plugins directory of TinyMCE (/jscripts/tiny_mce/plugins).
* Add plugin to TinyMCE plugin option list example: plugins : "zoom".
* Add the preview button name to button list, example: theme_advanced_buttons3_add : "zoom".
Initialization example:
tinyMCE.init({
theme : "advanced",
mode : "textareas",
plugins : "preview",
theme_advanced_buttons3_add : "zoom"
});
Requirement:
This plugin requires MSIE on Mozilla the button will not be visible.
|