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

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

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

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