diff options
author | Noah Loomans <noahloomans@gmail.com> | 2016-12-21 11:55:02 +0100 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2016-12-21 11:55:02 +0100 |
commit | 7ec11ecfc447c66582e16d4e832cbfc089139e29 (patch) | |
tree | 90475f185803ab8bbc789102880c906932e520eb /public/javascripts/weekSelector.js | |
parent | 0f50fb9ddc50b35faa8b927b9dbf81d006ba0094 (diff) |
fixed ie
Diffstat (limited to 'public/javascripts/weekSelector.js')
-rw-r--r-- | public/javascripts/weekSelector.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/javascripts/weekSelector.js b/public/javascripts/weekSelector.js index f0b00ad..6dbf2c8 100644 --- a/public/javascripts/weekSelector.js +++ b/public/javascripts/weekSelector.js @@ -73,9 +73,9 @@ self.updateDom = function () { } } if (humanReadableWeek != null) { - self._nodes.currentWeekText.textContent = `${humanReadableWeek} • ${selectedWeekNumber}` + self._nodes.currentWeekText.textContent = humanReadableWeek + ' • ' + selectedWeekNumber } else { - self._nodes.currentWeekText.textContent = `Week ${selectedWeekNumber}` + self._nodes.currentWeekText.textContent = 'Week ' + selectedWeekNumber } } |