mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
2adf09129d
Tada!
22 lines
551 B
JavaScript
22 lines
551 B
JavaScript
/*\
|
|
title: $:/core/modules/widgets/edit-text.js
|
|
type: application/javascript
|
|
module-type: widget
|
|
|
|
Edit-text widget
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
var editTextWidgetFactory = require("$:/core/modules/editor/factory.js").editTextWidgetFactory,
|
|
FramedEngine = require("$:/core/modules/editor/engines/framed.js").FramedEngine,
|
|
SimpleEngine = require("$:/core/modules/editor/engines/simple.js").SimpleEngine;
|
|
|
|
exports["edit-text"] = editTextWidgetFactory(FramedEngine,SimpleEngine);
|
|
|
|
})();
|