MediaWiki:Common.js: различия между версиями

Материал из melioration.space
Строка 5: Строка 5:
 
     var doc = view.getDocument();
 
     var doc = view.getDocument();
 
     var model = ve.init.target.getSurface().getModel();
 
     var model = ve.init.target.getSurface().getModel();
 +
    var surface = ve.init.target.getSurface();
 
     //while editing - only on current node
 
     //while editing - only on current node
 +
    surface.on( 'change', function () {
 +
        console.log("Обновление Surface");
 +
if ( MathJax ) MathJax.typeset();   
 +
    } );
 
     model.on( 'documentUpdate', function () {
 
     model.on( 'documentUpdate', function () {
 
         try
 
         try

Версия 19:45, 25 декабря 2020

mw.hook( 've.activationComplete' ).add( function() {
	console.log("Назначение");
	if ( MathJax ) MathJax.typeset();
    var view =ve.init.target.getSurface().getView();
    var doc = view.getDocument();
    var model = ve.init.target.getSurface().getModel();
    var surface = ve.init.target.getSurface();
    //while editing - only on current node
    surface.on( 'change', function () {
        	console.log("Обновление Surface");
			if ( MathJax ) MathJax.typeset();    	
    } );
    model.on( 'documentUpdate', function () {
        try
        {
        	console.log("Обновление");
			if ( MathJax ) MathJax.typeset();
        } catch(err){
            console.log('Error in Gadget-Rechtschreibpruefung.js:documentUpdate');
            console.log(err);
        }
    } );
});