mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 22:35:41 +00:00
mw.ViewPageTarget: Use new simplified ve.ui.Surface#getDom
Depends on I6355cf484b8 in core. Change-Id: I3dcce40af346b1c5ab75c0da81aee8ae02937f44
This commit is contained in:
parent
009a44b03a
commit
502272a1bc
|
@ -1256,7 +1256,7 @@ ve.init.mw.ViewPageTarget.prototype.showSaveDialog = function () {
|
|||
|
||||
// Preload the serialization
|
||||
if ( !target.docToSave ) {
|
||||
target.docToSave = ve.dm.converter.getDomFromModel( target.getSurface().getModel().getDocument() );
|
||||
target.docToSave = target.getSurface().getDom();
|
||||
}
|
||||
target.prepareCacheKey( target.docToSave );
|
||||
|
||||
|
@ -1734,7 +1734,7 @@ ve.init.mw.ViewPageTarget.prototype.switchToWikitextEditor = function ( discardC
|
|||
} ).toString();
|
||||
} else {
|
||||
this.serialize(
|
||||
this.docToSave || ve.dm.converter.getDomFromModel( this.getSurface().getModel().getDocument() ),
|
||||
this.docToSave || this.getSurface().getDom(),
|
||||
function ( wikitext ) {
|
||||
ve.track( 'mwedit.abort', { type: 'switchwith', mechanism: 'navigate' } );
|
||||
target.submitWithSaveFields( { wpDiff: 1, veswitched: 1 }, wikitext );
|
||||
|
|
Loading…
Reference in a new issue