Changeset 508 for Dev/trunk/src/client/qed-client/pages
- Timestamp:
- 03/12/14 02:23:11 (11 years ago)
- Location:
- Dev/trunk/src/client/qed-client/pages
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/src/client/qed-client/pages/response.js
r503 r508 42 42 var canDelete = (this.response && 43 43 this.response._surveyRun.respondentCanDeleteOwnResponse); 44 this.cancelButton.set('disabled',canDelete ||false);44 this.cancelButton.set('disabled',canDelete?false:true); 45 45 this.surveyWidget.set('readOnly', false); 46 46 }, -
Dev/trunk/src/client/qed-client/pages/surveys.js
r497 r508 49 49 _onRunSurvey:function(survey){ 50 50 var surveyRun = surveyRuns.create(); 51 surveyRun.title = 'Run of "' + survey.title + '" of '+(new Date().toString()); 51 52 surveyRun.survey = survey; 52 53 surveyRuns.save(surveyRun)
Note: See TracChangeset
for help on using the changeset viewer.