KKeine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 108: | Zeile 108: | ||
}); | }); | ||
}); | }); | ||
} | |||
//Fix für das inputbox-Problem: Ignoriere alle inputboxen innerhalb der vector-Vorschau | |||
if(mw.config.get('wgAction')==="edit"){ | |||
var observer=new MutationObserver(function(mutations){ | |||
mutations.forEach(function(m){ | |||
if(m.addedNodes.length) $('.wikiEditor-preview-contents input').prop('disabled', true); | |||
}); | |||
}); | |||
observer.observe(document.querySelector('.wikiEditor-preview-contents'),{childList: true}); | |||
} | } | ||