Skip to content
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 manuscript/markdown/References and Rebinding/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ For example, this date format function cribbed from somewhere or other has a hel
day_diff > 360 && Math.floor( day_diff / 360) + " years " +
Math.floor(day_diff%360/32) + " months ago") + '</span>';
}
else return '-'
else return '-';

function unformattedDate (time) {
return new Date((time || "").replace(/[-+]/g,"/").
Expand Down