source: Dev/trunk/src/qed-client/model/widgets/questions/TextWidget.js @ 443

Last change on this file since 443 was 443, checked in by hendrikvanantwerpen, 12 years ago

Reorganized for Node --- the SVN gods hate us all!

Lost all historical info on moved files, because SVN is a f *.

Also we have Node now, serving both the static content and forwarding
database requests.

File size: 310 bytes
Line 
1define([
2    "dijit/_TemplatedMixin",
3    "dijit/_WidgetBase",
4    "dojo/_base/declare",
5    "dojo/text!./templates/TextWidget.html"
6], function(_TemplatedMixin, _WidgetBase, declare, template) {
7    return declare([_WidgetBase,_TemplatedMixin],{
8        templateString: template,
9        text: ''
10    });
11});
Note: See TracBrowser for help on using the repository browser.