- Timestamp:
- 07/29/12 16:04:45 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/branches/rest-dojo-ui/client/rft/ui/TabbedQuestionBrowser.js
r384 r386 20 20 _busyCount: 0, 21 21 constructor: function(){ 22 this.inherited(arguments); 22 23 this._dataMap = {}; 23 24 }, 24 25 startup: function() { 26 this.inherited(arguments); 25 27 this._busyWidget = new Standby({ 26 28 target: this.domNode, … … 40 42 var categoryTab = new ContentPane({ 41 43 __category: category, 42 title: category+" ("+count+")"44 title: (category || '[No category]')+" ("+count+")" 43 45 }); 44 46 categoryTab.startup(); … … 68 70 __category: category, 69 71 __topic: topic, 70 title: topic+" ("+count+")",72 title: (topic || '[No topic]')+" ("+count+")", 71 73 selectedActions: this.selectedActions, 72 74 itemActions: this.itemActions
Note: See TracChangeset
for help on using the changeset viewer.