Skip to content

Commit

Permalink
Swap position for overall and month balance on day view
Browse files Browse the repository at this point in the history
Closes #328
  • Loading branch information
thamara committed Jul 30, 2020
1 parent b23ae0e commit d46590a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions js/classes/Calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -1010,15 +1010,15 @@ class DayCalendar extends Calendar {
return '<div class="month-total-row">' +
'<div class="half-width">' +
'<div class="month-total-element">' +
'<div class="month-total-text month-sum" title="Overall balance until end of the month or current day">Overall Balance</div>' +
'<div class="month-total-time month-sum-time" title="Overall balance until end of the month or current day"><span id="overall-balance"></div>' +
'</div>' +
'<div class="month-total-text month-balance" title="Balance up until today for this month. A positive balance means extra hours you don\'t need to work today (or the rest of the month).">Month Balance</div>' +
'<div class="month-total-time month-balance-time" title="Balance up until today for this month. A positive balance means extra hours you don\'t need to work today (or the rest of the month)."><span type="text" id="month-balance"></div>' +
'</div>' +
'</div>' +
'<div class="half-width">' +
'<div class="month-total-element">' +
'<div class="month-total-text month-balance" title="Balance up until today for this month. A positive balance means extra hours you don\'t need to work today (or the rest of the month).">Month Balance</div>' +
'<div class="month-total-time month-balance-time" title="Balance up until today for this month. A positive balance means extra hours you don\'t need to work today (or the rest of the month)."><span type="text" id="month-balance"></div>' +
'</div>' +
'<div class="month-total-text month-sum" title="Overall balance until end of the month or current day">Overall Balance</div>' +
'<div class="month-total-time month-sum-time" title="Overall balance until end of the month or current day"><span id="overall-balance"></div>' +
'</div>' +
'</div>' +
'</div>';
}
Expand Down

0 comments on commit d46590a

Please sign in to comment.