2013-10-15 13:32:27 +00:00
|
|
|
/*\
|
2013-11-08 08:47:00 +00:00
|
|
|
title: $:/core/modules/widgets/edit-text.js
|
2013-10-15 13:32:27 +00:00
|
|
|
type: application/javascript
|
2013-11-08 08:47:00 +00:00
|
|
|
module-type: widget
|
2013-10-15 13:32:27 +00:00
|
|
|
|
|
|
|
Edit-text widget
|
|
|
|
|
|
|
|
\*/
|
|
|
|
(function(){
|
|
|
|
|
|
|
|
/*jslint node: true, browser: true */
|
|
|
|
/*global $tw: false */
|
|
|
|
"use strict";
|
|
|
|
|
2016-04-22 07:36:29 +00:00
|
|
|
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;
|
2013-10-15 13:32:27 +00:00
|
|
|
|
2016-04-22 07:36:29 +00:00
|
|
|
exports["edit-text"] = editTextWidgetFactory(FramedEngine,SimpleEngine);
|
2013-10-15 13:32:27 +00:00
|
|
|
|
|
|
|
})();
|