Revision 8eeb7c70
Von Moritz Bunkus vor mehr als 8 Jahren hinzugefügt
js/kivi.js | ||
---|---|---|
31 | 31 |
ns.parse_date = function(date) { |
32 | 32 |
var parts = date.replace(/\s+/g, "").split(ns._date_format.sep); |
33 | 33 |
date = new Date( |
34 |
((parts[ ns._date_format.y ] || 0) * 1) || (new Date).getFullYear(), |
|
34 |
((parts[ ns._date_format.y ] || 0) * 1) || (new Date()).getFullYear(),
|
|
35 | 35 |
(parts[ ns._date_format.m ] || 0) * 1 - 1, // Months are 0-based. |
36 | 36 |
(parts[ ns._date_format.d ] || 0) * 1 |
37 | 37 |
); |
Auch abrufbar als: Unified diff
JS: fehlende Klammern bei Konstruktor-Aufruf gefixt (von jshint)