mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 06:24:08 +00:00
Fix typos in function names
Change-Id: Id8a9bcd1b4409bc8132ac6007b75274074f5f477
This commit is contained in:
parent
b5dc12d50e
commit
87daf4773d
|
@ -251,7 +251,7 @@ ve.ui.toolFactory.register( ve.ui.MWBackTool );
|
|||
/**
|
||||
* Back command
|
||||
*/
|
||||
ve.ui.MWBackCommand = function VeUiMwBackCommmand() {
|
||||
ve.ui.MWBackCommand = function VeUiMWBackCommand() {
|
||||
// Parent constructor
|
||||
ve.ui.MWBackCommand.super.call( this, 'back' );
|
||||
};
|
||||
|
@ -280,7 +280,7 @@ ve.ui.toolFactory.register( ve.ui.MWDoneTool );
|
|||
/**
|
||||
* Done command
|
||||
*/
|
||||
ve.ui.MWDoneCommand = function VeUiMwDoneCommmand() {
|
||||
ve.ui.MWDoneCommand = function VeUiMwDoneCommand() {
|
||||
// Parent constructor
|
||||
ve.ui.MWDoneCommand.super.call( this, 'done' );
|
||||
};
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
* @constructor
|
||||
* @param {ve.init.mw.Target} target Target class to log events for
|
||||
*/
|
||||
ve.init.mw.TargetEvents = function ( target ) {
|
||||
ve.init.mw.TargetEvents = function VeInitMwTargetEvents( target ) {
|
||||
this.target = target;
|
||||
this.timings = { saveRetries: 0 };
|
||||
// Events
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* @param {ve.dm.Model} model Model item is related to
|
||||
* @param {Object} config Configuration options
|
||||
*/
|
||||
ve.ui.MWAlienExtensionContextItem = function VeMWAlienExtensionContextItem( context, model ) {
|
||||
ve.ui.MWAlienExtensionContextItem = function VeUiMWAlienExtensionContextItem( context, model ) {
|
||||
// Parent constructor
|
||||
ve.ui.MWAlienExtensionContextItem.super.apply( this, arguments );
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* @param {ve.dm.Model} model Model item is related to
|
||||
* @param {Object} config Configuration options
|
||||
*/
|
||||
ve.ui.MWCitationContextItem = function VeMWCitationContextItem() {
|
||||
ve.ui.MWCitationContextItem = function VeUiMWCitationContextItem() {
|
||||
// Parent constructor
|
||||
ve.ui.MWCitationContextItem.super.apply( this, arguments );
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* @param {ve.dm.Model} model Model item is related to
|
||||
* @param {Object} config Configuration options
|
||||
*/
|
||||
ve.ui.MWInternalLinkContextItem = function VeMWInternalLinkContextItem() {
|
||||
ve.ui.MWInternalLinkContextItem = function VeUiMWInternalLinkContextItem() {
|
||||
// Parent constructor
|
||||
ve.ui.MWInternalLinkContextItem.super.apply( this, arguments );
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* @param {ve.dm.Model} model Model item is related to
|
||||
* @param {Object} config Configuration options
|
||||
*/
|
||||
ve.ui.MWNumberedExternalLinkNodeContextItem = function VeMWNumberedExternalLinkNodeContextItem() {
|
||||
ve.ui.MWNumberedExternalLinkNodeContextItem = function VeUiMWNumberedExternalLinkNodeContextItem() {
|
||||
// Parent constructor
|
||||
ve.ui.MWNumberedExternalLinkNodeContextItem.super.apply( this, arguments );
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* @param {ve.dm.Model} model Model item is related to
|
||||
* @param {Object} config Configuration options
|
||||
*/
|
||||
ve.ui.MWReferenceContextItem = function VeMWReferenceContextItem() {
|
||||
ve.ui.MWReferenceContextItem = function VeUiMWReferenceContextItem() {
|
||||
// Parent constructor
|
||||
ve.ui.MWReferenceContextItem.super.apply( this, arguments );
|
||||
this.view = null;
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* @param {ve.dm.Model} model Model item is related to
|
||||
* @param {Object} config Configuration options
|
||||
*/
|
||||
ve.ui.MWReferencesListContextItem = function VeMWReferencesListContextItem() {
|
||||
ve.ui.MWReferencesListContextItem = function VeUiMWReferencesListContextItem() {
|
||||
// Parent constructor
|
||||
ve.ui.MWReferencesListContextItem.super.apply( this, arguments );
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* @param {ve.dm.Model} model Model item is related to
|
||||
* @param {Object} config Configuration options
|
||||
*/
|
||||
ve.ui.MWTransclusionContextItem = function VeMWTransclusionContextItem() {
|
||||
ve.ui.MWTransclusionContextItem = function VeUiMWTransclusionContextItem() {
|
||||
// Parent constructor
|
||||
ve.ui.MWTransclusionContextItem.super.apply( this, arguments );
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* @param {Object} [config] Configuration options
|
||||
* @cfg {string} emptyGroupName Label of the placeholder item
|
||||
*/
|
||||
ve.ui.MWReferenceGroupInputWidget = function VeUiMWReferenceGroupInput( config ) {
|
||||
ve.ui.MWReferenceGroupInputWidget = function VeUiMWReferenceGroupInputWidget( config ) {
|
||||
config = config || {};
|
||||
|
||||
this.emptyGroupName = config.emptyGroupName;
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
* @cfg {number} tocIndex Running count of TOC items
|
||||
*
|
||||
*/
|
||||
ve.ui.MWTocItemWidget = function VeCeMWTocItemWidget( config ) {
|
||||
ve.ui.MWTocItemWidget = function VeUiMWTocItemWidget( config ) {
|
||||
// Parent constructor
|
||||
OO.ui.Widget.call( this, config );
|
||||
|
||||
|
|
Loading…
Reference in a new issue