mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-28 16:20:52 +00:00
Merge "clean up: Consistently use MW instead of Mw in constructor names"
This commit is contained in:
commit
32734767fc
|
@ -15,7 +15,7 @@
|
|||
* @constructor
|
||||
* @param {jQuery} [$resizable=this.$] Resizable DOM element
|
||||
*/
|
||||
ve.ce.MWResizableNode = function VeCeMwResizableNode( $resizable ) {
|
||||
ve.ce.MWResizableNode = function VeCeMWResizableNode( $resizable ) {
|
||||
ve.ce.ResizableNode.call( this, $resizable );
|
||||
};
|
||||
|
||||
|
@ -38,4 +38,4 @@ ve.ce.MWResizableNode.prototype.getAttributeChanges = function ( width, height )
|
|||
attrChanges.defaultSize = false;
|
||||
}
|
||||
return attrChanges;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
* @constructor
|
||||
* @param {Object} element [description]
|
||||
*/
|
||||
ve.dm.MWNowikiAnnotation = function VeDmMwNowikiAnnotation( element ) {
|
||||
ve.dm.MWNowikiAnnotation = function VeDmMWNowikiAnnotation( element ) {
|
||||
// Parent constructor
|
||||
ve.dm.Annotation.call( this, element );
|
||||
};
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
* @param {ve.ui.Toolbar} toolbar
|
||||
* @param {Object} [config] Config options
|
||||
*/
|
||||
ve.ui.MWLinkButtonTool = function VeUiMwLinkButtonTool( toolbar, config ) {
|
||||
ve.ui.MWLinkButtonTool = function VeUiMWLinkButtonTool( toolbar, config ) {
|
||||
// Parent constructor
|
||||
ve.ui.LinkButtonTool.call( this, toolbar, config );
|
||||
};
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
* @param {ve.ui.Toolbar} toolbar
|
||||
* @param {Object} [config] Config options
|
||||
*/
|
||||
ve.ui.MWReferenceListButtonTool = function VeUiMwReferenceListButtonTool( toolbar, config ) {
|
||||
ve.ui.MWReferenceListButtonTool = function VeUiMWReferenceListButtonTool( toolbar, config ) {
|
||||
// Parent constructor
|
||||
ve.ui.DialogButtonTool.call( this, toolbar, config );
|
||||
};
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
* @param {ve.ui.Toolbar} toolbar
|
||||
* @param {Object} [config] Config options
|
||||
*/
|
||||
ve.ui.MWTransclusionButtonTool = function VeUiMwTransclusionButtonTool( toolbar, config ) {
|
||||
ve.ui.MWTransclusionButtonTool = function VeUiMWTransclusionButtonTool( toolbar, config ) {
|
||||
// Parent constructor
|
||||
ve.ui.DialogButtonTool.call( this, toolbar, config );
|
||||
};
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
* @constructor
|
||||
* @param {ve.ui.Toolbar} toolbar
|
||||
*/
|
||||
ve.ui.MWFormatDropdownTool = function VeUiMwFormatDropdownTool( toolbar, config ) {
|
||||
ve.ui.MWFormatDropdownTool = function VeUiMWFormatDropdownTool( toolbar, config ) {
|
||||
// Parent constructor
|
||||
ve.ui.FormatDropdownTool.call( this, toolbar, config );
|
||||
};
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
* @constructor
|
||||
* @param {Object} [config] Config options
|
||||
*/
|
||||
ve.ui.MWCategoryPopupWidget = function VeUiMwCategoryPopupWidget ( config ) {
|
||||
ve.ui.MWCategoryPopupWidget = function VeUiMWCategoryPopupWidget ( config ) {
|
||||
// Configuration initialization
|
||||
config = ve.extendObject( {}, config, { 'autoClose': true } );
|
||||
|
||||
|
|
Loading…
Reference in a new issue