Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 1... Línea 1...
1
/**
1
/**
2
 * TinyMCE version 6.8.3 (2024-02-08)
2
 * TinyMCE version 7.7.1 (2025-03-05)
3
 */
3
 */
Línea 4... Línea 4...
4
 
4
 
5
(function () {
5
(function () {
Línea 531... Línea 531...
531
      const onAction = () => editor.execCommand('mceVisualChars');
531
      const onAction = () => editor.execCommand('mceVisualChars');
532
      editor.ui.registry.addToggleButton('visualchars', {
532
      editor.ui.registry.addToggleButton('visualchars', {
533
        tooltip: 'Show invisible characters',
533
        tooltip: 'Show invisible characters',
534
        icon: 'visualchars',
534
        icon: 'visualchars',
535
        onAction,
535
        onAction,
536
        onSetup: toggleActiveState(editor, toggleState)
536
        onSetup: toggleActiveState(editor, toggleState),
-
 
537
        context: 'any'
537
      });
538
      });
538
      editor.ui.registry.addToggleMenuItem('visualchars', {
539
      editor.ui.registry.addToggleMenuItem('visualchars', {
539
        text: 'Show invisible characters',
540
        text: 'Show invisible characters',
540
        icon: 'visualchars',
541
        icon: 'visualchars',
541
        onAction,
542
        onAction,
542
        onSetup: toggleActiveState(editor, toggleState)
543
        onSetup: toggleActiveState(editor, toggleState),
-
 
544
        context: 'any'
543
      });
545
      });
544
    };
546
    };
Línea 545... Línea 547...
545
 
547
 
546
    var Plugin = () => {
548
    var Plugin = () => {