Skip to content
This repository has been archived by the owner on Jan 14, 2020. It is now read-only.

Use 12:00 as a reference point for simple dates instead of midnight. (#4025) #13

Open
wants to merge 1 commit into
base: 1.4-stable
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/javascripts/calendar/calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -1589,7 +1589,7 @@ Date.parseDate = function(str, fmt) {
var a = str.split(/\W+/);
var b = fmt.match(/%./g);
var i = 0, j = 0;
var hr = 0;
var hr = 12;
var min = 0;
for (i = 0; i < a.length; ++i) {
if (!a[i])
Expand Down