Last change
on this file since 281 was
281,
checked in by hendrikvanantwerpen, 13 years ago
|
- [Client] Removed local Dojo copy and pull in via svn:external.
- [Client] Keep categories of questions in alphabetical order.
- [Client] Added skeleton QuestionWidget? for different question types.
|
File size:
395 bytes
|
Line | |
---|
1 | require(['dojo/_base/declare','dojo/_base/query','dijit/registry','dojox/widget/TitleGroup'],function(declare,query,registry,TitleGroup){ |
---|
2 | declare('rft.ui.TitleGroup',[TitleGroup],{ |
---|
3 | getChildren: function() { |
---|
4 | return query("> .dijitTitlePane", this.domNode) |
---|
5 | .map(function(node){ |
---|
6 | return registry.byNode(node); |
---|
7 | }); |
---|
8 | } |
---|
9 | }); |
---|
10 | }); |
---|
Note: See
TracBrowser
for help on using the repository browser.