Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1635 from interactivellama/scheduler-set-value
Browse files Browse the repository at this point in the history
Increase readability and maintainability: scheduler setValue
  • Loading branch information
swilliamset committed Jan 26, 2016
2 parents e008203 + 526492a commit 928c70f
Show file tree
Hide file tree
Showing 2 changed files with 217 additions and 178 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -807,12 +807,12 @@ define(function (require) {
});
$('#btnSchedulerSetValue').on('click', function () {
var newVal = {
'startDateTime': '2014-03-31T03:23+02:00',
'startDateTime': '2015-11-27T23:00:00+02:00',
'timeZone': {
'name': 'Namibia Standard Time',
'offset': '+02:00'
},
'recurrencePattern': 'FREQ=MONTHLY;INTERVAL=6;BYDAY=WE;BYSETPOS=3;UNTIL=20140919'
'recurrencePattern': 'FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;INTERVAL=1;UNTIL=20140919'
};
log(newVal);
$('#myScheduler').scheduler('value', newVal);
Expand Down
Loading

0 comments on commit 928c70f

Please sign in to comment.