1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-08-30 04:52:46 +00:00
TiddlyWiki5/core/modules/editor/operations/text/redo.js
2016-04-22 08:36:29 +01:00

20 lines
360 B
JavaScript

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