Preview: fmath_formula.js
Size: 1.69 KB
/home/jambtst2015/public_html/ckeditor/plugins/fmath_formula/dialogs/fmath_formula.js
//-------------------------------------------------------------
// Created by: Ionel Alexandru
// Mail: ionel.alexandru@gmail.com
// Site: www.fmath.info
//---------------------------------------------------------------
(function()
{
CKEDITOR.dialog.add( 'fmath_formula', function( editor )
{
var id = editor.id;
return {
title : 'Mathml Editor',
minWidth : 910,
minHeight : 480,
//buttons: [],
contents :
[
{
id : 'iframe',
label : 'Mathml Editor',
expand : true,
elements :
[
{
type : 'html',
id : 'pageMathMLEmbed',
label : 'Mathml Editor',
html : '<div style="width:900px;height:470px"><iframe src="'+ CKEDITOR.plugins.getPath('fmath_formula') +'dialogs/editor.html" frameborder="0" name="iframeMathmlEditor'+id+'" id="iframeMathmlEditor'+id+'" allowtransparency="1" style="width:900px;height:470px;margin:0;padding:0;" scrolling="no"></iframe></div>'
}
]
}
],
onOk : function()
{
var frame = document.getElementById('iframeMathmlEditor'+id).contentWindow;
frame.saveImage(editor);
return false;
},
onHide : function()
{
var frame = document.getElementById('iframeMathmlEditor'+id);
frame.src = CKEDITOR.plugins.getPath('fmath_formula') +'dialogs/editor.html';
}
};
} );
})();
Directory Contents
Dirs: 1 × Files: 4