1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-10-20 02:07:38 +00:00

Change new_widget to widget

I was avoiding doing this until after the merge.
This commit is contained in:
Jeremy Ruston
2013-11-08 08:47:00 +00:00
parent 3e3a5917b7
commit b7cb1d3391
37 changed files with 94 additions and 94 deletions

View File

@@ -1,7 +1,7 @@
/*\
title: $:/core/modules/new_widgets/widget.js
title: $:/core/modules/widgets/widget.js
type: application/javascript
module-type: new_widget
module-type: widget
Widget base class
@@ -47,7 +47,7 @@ Widget.prototype.initialise = function(parseTreeNode,options) {
this.eventListeners = {};
// Hashmap of the widget classes
if(!this.widgetClasses) {
Widget.prototype.widgetClasses = $tw.modules.applyMethods("new_widget");
Widget.prototype.widgetClasses = $tw.modules.applyMethods("widget");
}
};