Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/VisualEditor/lib/ve/src/ui/actions/ve.ui.HistoryAction.js
Ðазад
/*! * VisualEditor UserInterface HistoryAction class. * * @copyright See AUTHORS.txt */ /** * History action. * * @class * @extends ve.ui.Action * * @constructor * @param {ve.ui.Surface} surface Surface to act on * @param {string} [source] */ ve.ui.HistoryAction = function VeUiHistoryAction() { // Parent constructor ve.ui.HistoryAction.super.apply( this, arguments ); }; /* Inheritance */ OO.inheritClass( ve.ui.HistoryAction, ve.ui.Action ); /* Static Properties */ ve.ui.HistoryAction.static.name = 'history'; ve.ui.HistoryAction.static.methods = [ 'undo', 'redo' ]; /* Methods */ /** * Step backwards in time. * * @return {boolean} Action was executed */ ve.ui.HistoryAction.prototype.undo = function () { this.surface.getModel().undo(); return true; }; /** * Step forwards in time. * * @return {boolean} Action was executed */ ve.ui.HistoryAction.prototype.redo = function () { this.surface.getModel().redo(); return true; }; /* Registration */ ve.ui.actionFactory.register( ve.ui.HistoryAction );
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка