0
1
Fork 0

Solucionado error en Htk.Calendar, ahora se permite seleccionar domigo en configuración de pedido

This commit is contained in:
Juan Ferrer Toribio 2016-10-28 09:43:51 +02:00
parent e314b28451
commit 61661a26a0
3 changed files with 3 additions and 4 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (1.381-deb8) stable; urgency=low
hedera-web (1.382-deb8) stable; urgency=low
* Initial Release.

View File

@ -196,8 +196,7 @@ Hedera.Checkout = new Class
,calendarRestrict: function (date)
{
return date.getTime () >= this.today.getTime ()
&& date.getDay () != 0;
return date.getTime () >= this.today.getTime ();
}
});

View File

@ -174,7 +174,7 @@ module.exports = new Class
if (this._restrictFunc)
{
cell.enabled = this._restrictFunc (cellDate);
cellDate.setTime (cellDate.getTime () + 86400000);
cellDate.setDate (cellDate.getDate () + 1);
}
}
else