mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 14:56:20 +00:00
cb704dee84
* A subclass of MenuItemWidget from OOUI, MWLinkMenuItemWidget, is introduced that, when used in MWLinkTargetInputWidget for both external and internal links, returns actual page links. * MWInternalLinkMenuItemWidget is extended from MWLinkMenuItemWidget to support the internal links. * LinkCache is being used in MWInternalLinkMenuItemWidet to stylize the links. Thus, getting rid of some old css classes. Bug: 51205 Change-Id: I3ac18dabd514ca539fff1db3c67ae97931c3d4fc
34 lines
858 B
JavaScript
34 lines
858 B
JavaScript
/*!
|
|
* VisualEditor UserInterface MWLinkMenuItemWidget class
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see http://ve.mit-license.org
|
|
*/
|
|
|
|
/**
|
|
* Creates a ve.ui.MWLinkMenuItemWidget object.
|
|
*
|
|
* @class
|
|
* @extends OO.ui.MenuItemWidget
|
|
*
|
|
* @constructor
|
|
* @param {Mixed} data Item data
|
|
* @param {Object} [config] Configuration options
|
|
* @cfg {string} [href] href to point to pages from link suggestions
|
|
*/
|
|
ve.ui.MWLinkMenuItemWidget = function VeUiMWLinkMenuItemWidget( data, config ) {
|
|
// Config intialization
|
|
config = config || {};
|
|
|
|
// Parent constructor
|
|
ve.ui.MWLinkMenuItemWidget.super.call( this, data, config );
|
|
|
|
// Intialization
|
|
this.$label.wrap( '<a>' );
|
|
this.$link = this.$label.parent();
|
|
this.$link.attr( 'href', config.href );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWLinkMenuItemWidget, OO.ui.MenuItemWidget );
|