mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-12 04:25:05 -05:00
Fix month off-by-one
This commit is contained in:
parent
4f86cc56d1
commit
1af9db8c4b
@ -57,7 +57,7 @@ module.exports = HumanModel.define({
|
|||||||
deps: ['created'],
|
deps: ['created'],
|
||||||
fn: function () {
|
fn: function () {
|
||||||
if (this.created) {
|
if (this.created) {
|
||||||
var month = this.created.getMonth();
|
var month = this.created.getMonth() + 1;
|
||||||
var day = this.created.getDate();
|
var day = this.created.getDate();
|
||||||
var hour = this.created.getHours();
|
var hour = this.created.getHours();
|
||||||
var minutes = this.created.getMinutes();
|
var minutes = this.created.getMinutes();
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
CACHE MANIFEST
|
CACHE MANIFEST
|
||||||
# 0.0.1 1387253893324
|
# 0.0.1 1387260413951
|
||||||
|
|
||||||
CACHE:
|
CACHE:
|
||||||
/app.js
|
/app.js
|
||||||
|
Loading…
Reference in New Issue
Block a user