Skip to content

Commit 2b9a057

Browse files
committed
fixes generated markup (adds missing quote)
Fixes #53.
1 parent b428e46 commit 2b9a057

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/jquery.fn.gantt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@
713713
}
714714

715715
dayArr.push('<div class="row date ' + day_class + '" '
716-
+ ' id="dh-' + tools.genId(rday.getTime()) + '" offset="' + i * tools.getCellSize() + '" repdate="' + rday.genRepDate() + '> '
716+
+ ' id="dh-' + tools.genId(rday.getTime()) + '" offset="' + i * tools.getCellSize() + '" repdate="' + rday.genRepDate() + '"> '
717717
+ ' <div class="fn-label">' + rday.getDate() + '</div></div>');
718718
dowArr.push('<div class="row day ' + day_class + '" '
719719
+ ' id="dw-' + tools.genId(rday.getTime()) + '" repdate="' + rday.genRepDate() + '"> '

0 commit comments

Comments
 (0)