mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
62bdaac13b
Change-Id: I76982b844cf2871d7583463def4393e5bdc33aa2
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel MWNoEditSectionMetaItem class.
|
|
*
|
|
* @copyright 2011-2016 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel disable section edit links meta item.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.MetaItem
|
|
* @constructor
|
|
* @param {Object} element Reference to element in meta-linmod
|
|
*/
|
|
ve.dm.MWNoEditSectionMetaItem = function VeDmMWNoEditSectionMetaItem() {
|
|
// Parent constructor
|
|
ve.dm.MWNoEditSectionMetaItem.super.apply( this, arguments );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.dm.MWNoEditSectionMetaItem, ve.dm.MetaItem );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.dm.MWNoEditSectionMetaItem.static.name = 'mwNoEditSection';
|
|
|
|
ve.dm.MWNoEditSectionMetaItem.static.group = 'mwNoEditSection';
|
|
|
|
ve.dm.MWNoEditSectionMetaItem.static.matchTagNames = [ 'meta' ];
|
|
|
|
ve.dm.MWNoEditSectionMetaItem.static.matchRdfaTypes = [ 'mw:PageProp/noeditsection' ];
|
|
|
|
ve.dm.MWNoEditSectionMetaItem.static.toDomElements = function ( dataElement, doc ) {
|
|
var meta = doc.createElement( 'meta' );
|
|
meta.setAttribute( 'property', 'mw:PageProp/noeditsection' );
|
|
return [ meta ];
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWNoEditSectionMetaItem );
|