Changeset 531 for Dev/trunk/src/client/qed-client/model
- Timestamp:
- 03/27/14 14:44:36 (11 years ago)
- Location:
- Dev/trunk/src/client/qed-client/model
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/src/client/qed-client/model/classes/_Class.js
r525 r531 64 64 }, 65 65 _formatDate: function(date) { 66 return stamp.toISOString(date,{zulu:true,milliseconds: false});66 return stamp.toISOString(date,{zulu:true,milliseconds:true}); 67 67 }, 68 68 _sanitize: function(obj) { -
Dev/trunk/src/client/qed-client/model/widgets/SurveyRunWidget.js
r513 r531 11 11 var endDateBox = this.endDateBox; 12 12 this.own(this.startDateBox.on('change', function(value){ 13 endDateBox.constraints.min 13 endDateBox.constraints.min = value; 14 14 })); 15 15 }, … … 24 24 value.respondentCanDeleteOwnResponse ? ["on"] : []; 25 25 this.inherited(arguments); 26 this.endDateBox.constraints.min = 27 this.startDateBox.get('value'); 26 28 } 27 29 });
Note: See TracChangeset
for help on using the changeset viewer.