mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 22:43:33 +08:00
FIX: Make time attribute as optional for local-dates bbcode
This commit is contained in:
@ -101,7 +101,7 @@
|
||||
var options = {};
|
||||
options.format = $this.attr("data-format");
|
||||
options.date = $this.attr("data-date");
|
||||
options.time = $this.attr("data-time");
|
||||
options.time = $this.attr("data-time") || "00:00:00";
|
||||
options.recurring = $this.attr("data-recurring");
|
||||
options.timezones = $this.attr("data-timezones");
|
||||
options.forceTimezone = $this.attr("data-force-timezone");
|
||||
|
Reference in New Issue
Block a user