mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-01 01:16:30 +00:00
Merge "Clear save caches when toolbar is re-attached"
This commit is contained in:
commit
02a8369777
|
@ -913,6 +913,7 @@ ve.init.mw.ArticleTarget.prototype.onSaveDialogClose = function () {
|
||||||
// Clear the cached HTML and cache key once the document changes
|
// Clear the cached HTML and cache key once the document changes
|
||||||
if ( this.getSurface() ) {
|
if ( this.getSurface() ) {
|
||||||
this.getSurface().getModel().getDocument().once( 'transact', clear );
|
this.getSurface().getModel().getDocument().once( 'transact', clear );
|
||||||
|
this.getSurface().once( 'destroy', clear );
|
||||||
} else {
|
} else {
|
||||||
clear();
|
clear();
|
||||||
}
|
}
|
||||||
|
@ -1472,6 +1473,11 @@ ve.init.mw.ArticleTarget.prototype.setupToolbar = function () {
|
||||||
|
|
||||||
this.setupToolbarSaveButton();
|
this.setupToolbarSaveButton();
|
||||||
this.attachToolbarSaveButton();
|
this.attachToolbarSaveButton();
|
||||||
|
|
||||||
|
if ( this.saveDialog ) {
|
||||||
|
this.saveDialog.disconnect( this );
|
||||||
|
this.saveDialog = null;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue