mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-12 09:57:16 +00:00
5c36a20623
Also update the actual HTML with what the current parser outputs: * width:104px -> width:102px (2px in addition to 100px image width) * No more "title" attribute on the outer <a>. And reduce duplication in the message: * Re-use "thumbnail-more" message. * Re-use "wikieditor-toolbar-help-content-file-caption" message. Change-Id: I25f0763b2274ebdcf681c78af277a9be302350a1 |
||
---|---|---|
i18n | ||
modules | ||
tests | ||
.gitignore | ||
.gitreview | ||
.jshintrc | ||
composer.json | ||
COPYING | ||
README | ||
WikiEditor.hooks.php | ||
WikiEditor.i18n.php | ||
WikiEditor.php |
# WikiEditor provides enhancements to the MediaWiki edit page # This extension requires MediaWiki 1.17+ because it makes use of ResourceLoader. # Example LocalSettings.php additions require_once( "$IP/extensions/WikiEditor/WikiEditor.php" ); # Before configuring this extension, see WikiEditor.php and become familiar with the initial state and structure of the # $wgWikiEditorFeatures configuration variable. Essentially it's an array of arrays, keyed by feature name, each # containing global and user keys with boolean values. "global" indicates that it should be turned on for everyone # always, while user indicates that users should be allowed to turn it on or off in their user preferences. # To enable a preference by default but still allow users to disable it in preferences, use something like... $wgDefaultUserOptions['usebetatoolbar'] = 1; $wgDefaultUserOptions['usebetatoolbar-cgd'] = 1; # Release 1.21 removes the $wgWikiEditorToolbarClickTracking config variable # and with it support for tracking clicks on WikiEditor features via the # ClickTracking extension.