diff --git a/templates/client/includes/accounts/calendar_table.html b/templates/client/includes/accounts/calendar_table.html
index d262c3ef..d783eb54 100644
--- a/templates/client/includes/accounts/calendar_table.html
+++ b/templates/client/includes/accounts/calendar_table.html
@@ -83,8 +83,12 @@
{% if day.month == event.data_begin.month %}
{% if day.day == event.data_begin.day %}
+ {% comment %}
-
+ {% endcomment %}
+
+
+
diff --git a/templates/client/static_client/js/_modules/page.profile.calendar.js b/templates/client/static_client/js/_modules/page.profile.calendar.js
index aac71b92..cf3bee3e 100644
--- a/templates/client/static_client/js/_modules/page.profile.calendar.js
+++ b/templates/client/static_client/js/_modules/page.profile.calendar.js
@@ -84,12 +84,12 @@ if (EXPO.profile.calendar) {
stepsCount = allDays / onestep;
currenCount = allDays / currentDay;
- result = stepsCount - Math.floor(currenCount);
+ result = Math.floor(stepsCount) - Math.floor(currenCount);
self.currentDay =currentDay;
if (result) {
- result--;
+ //result--;
offset = onestep * result * width;
} else {
|