mediawiki-extensions-Visual.../modules/ve-mw/ui/contextitems/ve.ui.MWNumberedExternalLinkNodeContextItem.js
Ed Sanders 87daf4773d Fix typos in function names
Change-Id: Id8a9bcd1b4409bc8132ac6007b75274074f5f477
2015-08-18 13:54:51 +01:00

43 lines
1.2 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*!
* VisualEditor MWNumberedExternalLinkNodeContextItem class.
*
* @copyright 2011-2015 VisualEditor Team and others; see http://ve.mit-license.org
*/
/**
* Context item for a MWNumberedExternalLinkNode.
*
* @class
* @extends ve.ui.LinkContextItem
*
* @constructor
* @param {ve.ui.Context} context Context item is in
* @param {ve.dm.Model} model Model item is related to
* @param {Object} config Configuration options
*/
ve.ui.MWNumberedExternalLinkNodeContextItem = function VeUiMWNumberedExternalLinkNodeContextItem() {
// Parent constructor
ve.ui.MWNumberedExternalLinkNodeContextItem.super.apply( this, arguments );
// Initialization
this.$element.addClass( 've-ui-mwNumberedExternalLinkNodeContextItem' );
};
/* Inheritance */
OO.inheritClass( ve.ui.MWNumberedExternalLinkNodeContextItem, ve.ui.LinkContextItem );
/* Static Properties */
ve.ui.MWNumberedExternalLinkNodeContextItem.static.name = 'link/mwNumberedExternal';
ve.ui.MWNumberedExternalLinkNodeContextItem.static.modelClasses = [ ve.dm.MWNumberedExternalLinkNode ];
/* Methods */
// None  LinkContextItem's suffice.
/* Registration */
ve.ui.contextItemFactory.register( ve.ui.MWNumberedExternalLinkNodeContextItem );