Reputation: 183
When using the MediaWiki software, how do you disable the popup saying "Your edit was saved." from appearing?
Upvotes: 1
Views: 176
Reputation: 1321
This feature has been created after A/B testing to provide users a feedback that their edit indeed has been saved. The module providing this functionality was unconditionally loaded, while now it's only loaded if a cookie, was set in EditPage.php. It will trigger a label/popup on the next page loading with action=view
(the default action). There was an HTML snippet, while now, HTML is generated by JavaScript mediawiki.action.view.postEdit.js
.
mediawiki.action.view.postEdit
- this will possibly save you a few bytes bandwidth, too..postedit {
display: none;
}
Upvotes: 2