1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-11 06:24:22 +00:00
TiddlyWiki5/core/modules/editor/operations/text/focus-editor.js
Simon Huber d695fca301
Add focus-editor text operation and use it where sensible (#6012)
* add and use focus-editor text operation

* add docs
2021-10-27 11:37:40 +01:00

17 lines
333 B
JavaScript

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