Go to file
Timo Tijhof 7769baa56e Replace deprecated jQuery bind() and size()
> JQMIGRATE: jQuery.fn.bind() is deprecated
> JQMIGRATE: jQuery.fn.size() is deprecated; use the .length property

Note that bind() is not removed in v3, merely deprecated.
Even after the jQuery Migrate phase, it will continue to work.

size() was removed in v3 and works only during the Migrate phase.

https://api.jquery.com/size/
https://api.jquery.com/bind/
https://jquery.com/upgrade-guide/3.0/

Bug: T124742
Change-Id: I6bbd8f829ecf987228c6a5abd32c84e4e088a9bd
2016-11-21 18:23:50 -08:00
i18n Localisation updates from https://translatewiki.net. 2016-11-21 22:42:44 +01:00
modules Replace deprecated jQuery bind() and size() 2016-11-21 18:23:50 -08: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
composer.json build: Updating mediawiki/mediawiki-codesniffer to 0.7.2 2016-05-27 18:26:50 -07:00
COPYING Add COPYING 2014-01-22 22:11:36 +00:00
extension.json Avoid flash of content when hiding editHelp and the pipe separator 2016-05-25 11:26:13 +00:00
Gruntfile.js Replace jshint/jscs with eslint/stylelint 2016-11-21 21:02:38 +00:00
package.json Replace jshint/jscs with eslint/stylelint 2016-11-21 21:02:38 +00:00
phpcs.xml Update mediawiki-codesniffer and parallel-lint settings 2015-09-29 17:45:58 +01:00
README Remove ClickTracking calls 2013-03-27 13:41:05 -07:00
WikiEditor.hooks.php Avoid flash of content when hiding editHelp and the pipe separator 2016-05-25 11:26:13 +00:00
WikiEditor.php Empty PHP entry point in favor of extension.json 2015-05-19 20:48:10 -07: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;
$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.