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
84d25812
Commit
84d25812
authored
Sep 03, 2016
by
Mark Stenglein
Browse files
Fix string generator to include commas.
- Just realized I forgot this.
parent
2ed86ca6
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/event.js
View file @
84d25812
...
...
@@ -704,9 +704,11 @@ var ICalEvent = function(_data, calendar) {
if
(
data
.
repeating
.
exclude
)
{
g
+=
'
;EXDATE=
'
;
var
sArr
=
[];
data
.
repeating
.
exclude
.
forEach
(
function
(
excludedDate
)
{
g
+=
tools
.
formatDate
(
excludedDate
);
sArr
.
push
(
tools
.
formatDate
(
excludedDate
)
)
;
});
g
+=
sArr
.
join
(
'
,
'
);
}
g
+=
'
\r\n
'
;
...
...
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