Revision eddbed03
Von Sven Schöling vor etwa 7 Jahren hinzugefügt
js/kivi.js | ||
---|---|---|
37 | 37 |
if (date === '') |
38 | 38 |
return null; |
39 | 39 |
|
40 |
if (date === '0') |
|
41 |
return new Date(); |
|
42 |
|
|
40 | 43 |
var parts = date.replace(/\s+/g, "").split(ns._date_format.sep); |
41 | 44 |
var today = new Date(); |
42 | 45 |
|
js/t/kivi/parse_format_date.js | ||
---|---|---|
23 | 23 |
assert.deepEqual(kivi.parse_date(":"), undefined); |
24 | 24 |
assert.deepEqual(kivi.parse_date("::"), undefined); |
25 | 25 |
assert.deepEqual(kivi.parse_date(""), null); |
26 |
assert.deepEqual(kivi.parse_date("0"), new Date()); |
|
26 | 27 |
}); |
27 | 28 |
|
28 | 29 |
QUnit.test("kivi.parse_date function for German date style with slashes", function( assert ) { |
Auch abrufbar als: Unified diff
kivi.Validator: Spezialbehandlung von 0 für heute wieder hergestellt