Go to file
Translation updater bot 2ad80f41f2 Localisation updates from https://translatewiki.net.
Change-Id: Ie803ba626373cabb135d949b5e5b11c6f9313572
2017-08-14 09:46:28 +02:00
i18n Localisation updates from https://translatewiki.net. 2017-08-14 09:46:28 +02:00
modules Merge "Hide loading spinner also on API fail" 2017-08-10 22:32:26 +00:00
tests/qunit Replace jshint/jscs with eslint/stylelint 2016-11-21 21:02:38 +00:00
.eslintrc.json Replace jshint/jscs with eslint/stylelint 2016-11-21 21:02:38 +00:00
.gitignore Expand .gitignore for more editors 2016-11-13 13:23:35 +01:00
.gitreview Whoops, track not trace 2016-10-24 17:04:09 -07:00
.stylelintrc Replace jshint/jscs with eslint/stylelint 2016-11-21 21:02:38 +00:00
CODE_OF_CONDUCT.md Add CODE_OF_CONDUCT.md 2017-06-07 16:42:43 +04:30
composer.json build: Updating mediawiki/mediawiki-codesniffer to 0.11.0 2017-08-11 00:54:20 -04:00
COPYING Add COPYING 2014-01-22 22:11:36 +00:00
extension.json Make toolbar and dialog part of the core module 2017-05-03 11:54:23 -07:00
Gruntfile.js Replace jshint/jscs with eslint/stylelint 2016-11-21 21:02:38 +00:00
package.json Define npm peer dependency explicitly 2017-07-31 13:44:46 +02:00
phpcs.xml build: Updating mediawiki/mediawiki-codesniffer to 0.11.0 2017-08-11 00:54:20 -04:00
README Make toolbar and dialog part of the core module 2017-05-03 11:54:23 -07:00
WikiEditor.hooks.php Fix some parameter docs 2017-07-27 11:47:20 +02:00

# 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;

# Release 1.21 removes the $wgWikiEditorToolbarClickTracking config variable
# and with it support for tracking clicks on WikiEditor features via the
# ClickTracking extension.