|
Lines 60-70
Link Here
|
| 60 |
buildRendering: function() { |
60 |
buildRendering: function() { |
| 61 |
this.inherited(arguments); |
61 |
this.inherited(arguments); |
| 62 |
|
62 |
|
| 63 |
this._component = new Text({content : ''}); |
63 |
this._component = new Text({ |
|
|
64 |
content : '', |
| 65 |
'class': 'umcProgressBarComponent' |
| 66 |
}); |
| 64 |
this.addChild(this._component); |
67 |
this.addChild(this._component); |
| 65 |
this._progressBar = new ProgressBar({}); |
68 |
this._progressBar = new ProgressBar({}); |
| 66 |
this.addChild(this._progressBar); |
69 |
this.addChild(this._progressBar); |
| 67 |
this._message = new Text({content : ' '}); |
70 |
this._message = new Text({ |
|
|
71 |
content : ' ', |
| 72 |
'class': 'umcProgressBarMessage' |
| 73 |
}); |
| 68 |
this.addChild(this._message); |
74 |
this.addChild(this._message); |
| 69 |
|
75 |
|
| 70 |
this._progressBar.set('value', 0); |
76 |
this._progressBar.set('value', 0); |