diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/validation.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/validation.js b/modules/luci-base/htdocs/luci-static/resources/validation.js index 621e5b8bd..ca544cb15 100644 --- a/modules/luci-base/htdocs/luci-static/resources/validation.js +++ b/modules/luci-base/htdocs/luci-static/resources/validation.js @@ -510,11 +510,11 @@ var ValidatorFactory = L.Class.extend({ day = +RegExp.$3, days_in_month = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ]; - function is_leap_year(year) { + var is_leap_year = function(year) { return ((!(year % 4) && (year % 100)) || !(year % 400)); } - function get_days_in_month(month, year) { + var get_days_in_month = function(month, year) { return (month === 2 && is_leap_year(year)) ? 29 : days_in_month[month - 1]; } |