Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
lib-ical
Commits
2122438f
Commit
2122438f
authored
Oct 14, 2014
by
jysperm
Browse files
update README.md about repeating events
parent
8f9d9d13
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
2122438f
...
...
@@ -80,6 +80,21 @@ Appointment date of beginning
#### options.end (Date Object, required)
Appointment date of end
#### options.repeating (Plain Object)
Appointment is a repeating event
```
javascript
cal
.
addEvent
({
/* Other options */
repeating
:
{
freq
:
'
MONTHLY
'
,
// required
count
:
5
,
interval
:
2
,
until
:
new
Date
(
"
Jan 01 2014 00:00:00 UTC
"
)
}
});
```
#### options.allDay (Bool)
Appointment is for the whole day
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment