1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-14 08:19:42 +00:00
TiddlyWiki5/core/modules/editor/operations/text/undo.js

20 lines
360 B
JavaScript
Raw Normal View History

/*\
title: $:/core/modules/editor/operations/text/undo.js
type: application/javascript
module-type: texteditoroperation
Text editor operation to tell the browser to perform an undo
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports["undo"] = function(event,operation) {
this.execCommand("undo");
};
})();