Changeset 396 for Dev/branches/rest-dojo-ui/client/rft/ui/ObjectBox.js
- Timestamp:
- 08/09/12 17:09:46 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/branches/rest-dojo-ui/client/rft/ui/ObjectBox.js
r359 r396 15 15 startup: function() { 16 16 this.line1 = new LineWithActionsWidget({ 17 modifiers: 'green',18 17 actions: { 19 18 "inspectIcon": { … … 21 20 properties: { 22 21 blockButton: false, 23 modifiers: "white",24 22 icon: "Inspect" 25 23 } … … 28 26 }).placeAt(this.line1Node); 29 27 this.line2 = new LineWithActionsWidget({ 30 modifiers: 'green'31 28 }).placeAt(this.line1Node); 32 29 var line3Actions = this._createLine3Actions(); 33 30 this.line3 = new LineWithActionsWidget({ 34 modifiers: 'green',35 31 actions: line3Actions 36 32 }).placeAt(this.line1Node); … … 50 46 blockButton: true, 51 47 label: action, 52 modifiers: "trans",53 48 icon: action.charAt(0).toUpperCase()+action.slice(1) 54 49 } … … 76 71 } 77 72 }); 78 73 });
Note: See TracChangeset
for help on using the changeset viewer.