diff options
Diffstat (limited to 'extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js')
-rw-r--r-- | extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js | 31 |
1 files changed, 6 insertions, 25 deletions
diff --git a/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js b/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js index d3f7a9d5..17a219af 100644 --- a/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js +++ b/extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js @@ -1,9 +1,10 @@ /** * Configuration of Toolbar module for wikiEditor */ -( function( $ ) { $.wikiEditor.modules.toolbar.config = { +/*jshint camelcase:false, quotmark:false */ +( function ( $, mw ) { $.wikiEditor.modules.toolbar.config = { -getDefaultConfig: function() { +getDefaultConfig: function () { var fileNamespace = mw.config.get( 'wgFormattedNamespaces' )[6]; return { 'toolbar': { // Main section @@ -43,6 +44,7 @@ getDefaultConfig: function() { 'eu': 'format-bold-L.png', 'he': 'format-bold-B.png', 'hu': 'format-bold-F.png', + 'hy': 'format-bold-hy.png', 'it': 'format-bold-G.png', 'ka': 'format-bold-ka.png', 'ky': 'format-bold-ru.png', @@ -98,6 +100,7 @@ getDefaultConfig: function() { 'eu': 'format-italic-E.png', 'he': 'format-italic-I.png', 'hu': 'format-italic-D.png', + 'hy': 'format-italic-hy.png', 'it': 'format-italic-C.png', 'ka': 'format-italic-ka.png', 'ky': 'format-italic-K.png', @@ -313,28 +316,6 @@ getDefaultConfig: function() { } } }, - 'indent': { - 'labelMsg': 'wikieditor-toolbar-tool-indent', - 'type': 'button', - 'icon': { - 'default': 'format-indent.png', - 'default-rtl': 'format-indent-rtl.png' - }, - 'offset': { - 'default': [2, -646], - 'default-rtl': [-70, -430] - }, - 'action': { - 'type': 'encapsulate', - 'options': { - 'pre': ":", - 'periMsg': 'wikieditor-toolbar-tool-indent-example', - 'post': "", - 'ownline': true, - 'splitlines': true - } - } - }, 'nowiki': { 'labelMsg': 'wikieditor-toolbar-tool-nowiki', 'type': 'button', @@ -1452,4 +1433,4 @@ getDefaultConfig: function() { } }; } -}; } ) ( jQuery ); +}; } ) ( jQuery, mediaWiki ); |