mediawiki-extensions-Cite/modules/ve-cite/ve.ui.MWCitationContextItem.js
James D. Forrester 0d20873fa6 doc: Bump copyright year notice, 'team' name
Change-Id: Ia090c417a1aa716b255613199b5e49616bf0517a
2017-04-20 16:50:43 +00:00

50 lines
1.2 KiB
JavaScript

/*!
* VisualEditor MWCitationContextItem class.
*
* @copyright 2011-2017 Cite VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Context item for a MWCitation.
*
* @class
* @extends ve.ui.MWReferenceContextItem
*
* @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.MWCitationContextItem = function VeUiMWCitationContextItem() {
// Parent constructor
ve.ui.MWCitationContextItem.super.apply( this, arguments );
// Initialization
this.$element.addClass( 've-ui-mwCitationContextItem' );
};
/* Inheritance */
OO.inheritClass( ve.ui.MWCitationContextItem, ve.ui.MWReferenceContextItem );
/* Static Properties */
/**
* Only display item for single-template transclusions of these templates.
*
* @property {string|string[]|null}
* @static
* @inheritable
*/
ve.ui.MWCitationContextItem.static.template = null;
/* Static Methods */
/**
* @static
* @localdoc Sharing implementation with ve.ui.MWCitationDialogTool
*/
ve.ui.MWCitationContextItem.static.isCompatibleWith =
ve.ui.MWCitationDialogTool.static.isCompatibleWith;