Dojo demo 2 initial version made on demo 1.

This commit is contained in:
Tomasz Półgrabia 2021-12-19 14:39:31 +01:00
parent 6e878d17f5
commit 1a2b04bd6c
7 changed files with 843 additions and 0 deletions

View file

@ -0,0 +1,10 @@
define([
"dijit/_TemplatedMixin",
"dijit/_WidgetBase",
"dojo/_base/declare",
"dojo/text!./MainWidget.html"
], function(_TemplatedMixin, _WidgetBase, declare, template) {
return declare("app/widgets/MainWidget", [_WidgetBase, _TemplatedMixin], {
templateString: template
});
});