2012-10-24 21:34:01 +00:00
|
|
|
/**
|
|
|
|
* VisualEditor Action class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generic action.
|
|
|
|
*
|
|
|
|
* An action is built around a surface for one-time use. It is a generic way of extending the
|
|
|
|
* functionality of a surface. Actions are accessible via {ve.Surface.prototype.execute}.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @constructor
|
|
|
|
* @param {ve.Surface} surface Surface to act on
|
|
|
|
*/
|
|
|
|
ve.Action = function VeAction( surface ) {
|
|
|
|
// Properties
|
|
|
|
this.surface = surface;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Static Members */
|
|
|
|
|
2012-10-27 00:03:54 +00:00
|
|
|
ve.Action.static = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of allowed methods for this action.
|
|
|
|
*
|
|
|
|
* To avoid use of methods not intended to be executed via surface.execute(), the methods must be
|
|
|
|
* whitelisted here. This information is checked by ve.Surface before executing an action.
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @member
|
|
|
|
*/
|
|
|
|
ve.Action.static.methods = [];
|