mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-11 17:01:58 +00:00
ac8c355e20
Steps to reproduce: * Start making changes to a page in the classic editor. * Use the normal "Show preview" or "Show diff" button at the bottom of the editor. The page reloads and now shows a preview/diff at the top, above the editor. * Now start using the realtime preview feature on the right side of the editor. You will notice that the preview/diff above the editor starts to flicker, but is never updated. (There is no need to update it. The realtime preview that is updated is the one in the right pane.) The original code was added via T293347. I believe the flicker exists since then. It's effectively a misconfiguration. I hope the comments make this clear. This is also a direct follow up to T307046 where the diff view was fixed (it just disappeared before), but flickers since then. Bug: T293347 Bug: T307046 Change-Id: I481610389cec902268a8fd09f6b0452131752d54 |
||
---|---|---|
.phan | ||
i18n | ||
includes | ||
modules | ||
tests/qunit | ||
.eslintrc.json | ||
.gitignore | ||
.gitreview | ||
.phpcs.xml | ||
.stylelintrc.json | ||
CODE_OF_CONDUCT.md | ||
composer.json | ||
COPYING | ||
extension.json | ||
Gruntfile.js | ||
jsdoc.json | ||
package-lock.json | ||
package.json | ||
README |
WikiEditor provides enhancements to the MediaWiki edit page For installation, once the code is copied into your extensions directory, you can load it for your wiki by adding to LocalSettings.php the line: wfLoadExtension( 'WikiEditor' ); By default, when installed this extension will be available to all users, and logged-in users can disable it from their preferences. If you wish all users to have it, and be unable to disable it, add it to $wgHiddenPrefs in your LocalSettings.php: $wgHiddenPrefs[] = 'usebetatoolbar'; More can be found on the extension's page: https://www.mediawiki.org/wiki/Extension:WikiEditor