Changeset 498 for Dev/trunk/src/client/qed-client/pages/question.js
- Timestamp:
- 03/10/14 11:49:29 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/src/client/qed-client/pages/question.js
r494 r498 24 24 }, 25 25 _refresh: function() { 26 this.titleNode.innerHTML = this.object.title || "";27 26 this.propertiesForm.set('value',this.object,null); 28 27 this.contentList.set('value',this.object.content,null); 28 this._internalRefresh(); 29 }, 30 _internalRefresh: function(){ 31 this.titleNode.innerHTML = this.object.title || ""; 29 32 }, 30 33 _handlePropertiesChange: function() { 31 34 this._updateObject(); 32 35 this.markDirty(); 33 this._ refresh();36 this._internalRefresh(); 34 37 }, 35 38 _handleContentChange: function() { 36 39 this._updateObject(); 37 40 this.markDirty(); 38 this._ refresh();41 this._internalRefresh(); 39 42 }, 40 43 _updateObject: function() {
Note: See TracChangeset
for help on using the changeset viewer.