mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-05 14:12:53 +00:00
908d1a8c19
To make integration and testing easier keeping references and tests unchanged. Change-Id: Ie808eaf0ffb754ba9c6be13810cfec2385d8de36
15 lines
271 B
JavaScript
15 lines
271 B
JavaScript
/*!
|
|
* VisualEditor EventEmitter class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Event emitter.
|
|
*
|
|
* @class
|
|
* @extends OO.EventEmitter
|
|
*/
|
|
ve.EventEmitter = OO.EventEmitter;
|