mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
20 lines
334 B
JavaScript
20 lines
334 B
JavaScript
|
/**
|
||
|
* DataModel annotation factory.
|
||
|
*
|
||
|
* @class
|
||
|
* @extends {ve.Factory}
|
||
|
* @constructor
|
||
|
*/
|
||
|
ve.dm.AnnotationFactory = function() {
|
||
|
// Inheritance
|
||
|
ve.Factory.call( this );
|
||
|
};
|
||
|
|
||
|
/* Inheritance */
|
||
|
|
||
|
ve.extendClass( ve.dm.AnnotationFactory, ve.Factory );
|
||
|
|
||
|
/* Initialization */
|
||
|
|
||
|
ve.dm.annotationFactory = new ve.dm.AnnotationFactory();
|