Changeset 498 for Dev/trunk/src/client/qed-client/pages/survey.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/survey.js
r495 r498 62 62 }, 63 63 _refresh: function() { 64 this.titleNode.innerHTML = this.object.title || "(set title in properties)";65 64 this.propertiesForm.set('value',{survey:this.object},null); 66 65 this.questionList.set('value',this.object.questions,null); 66 this._internalRefresh(); 67 }, 68 _internalRefresh: function() { 69 this.titleNode.innerHTML = this.object.title || "(set title in properties)"; 67 70 }, 68 71 _includeQuestion: function(question) { … … 72 75 this.object.questions = this.questionList.get('value'); 73 76 this.markDirty(); 74 this._ refresh();77 this._internalRefresh(); 75 78 }, 76 79 _onShowProperties: function(evt) { … … 83 86 lang.mixin(this.object, this.propertiesForm.get('value').survey); 84 87 this.markDirty(); 85 this._ refresh();88 this._internalRefresh(); 86 89 if ( evt ) { event.stop(evt); } 87 90 return false;
Note: See TracChangeset
for help on using the changeset viewer.