Merge "clean up: Consistently use MW instead of Mw in constructor names"

This commit is contained in:
jenkins-bot 2013-08-07 10:29:03 +00:00 committed by Gerrit Code Review
commit 32734767fc
7 changed files with 8 additions and 8 deletions

View file

@ -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;
};
};

View file

@ -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 );
};

View file

@ -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 );
};

View file

@ -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 );
};

View file

@ -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 );
};

View file

@ -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 );
};

View file

@ -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 } );