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/schedule.js | |
parent | 0f50fb9ddc50b35faa8b927b9dbf81d006ba0094 (diff) |
fixed ie
Diffstat (limited to 'public/javascripts/schedule.js')
-rw-r--r-- | public/javascripts/schedule.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/javascripts/schedule.js b/public/javascripts/schedule.js index e93ecf8..2e6fb81 100644 --- a/public/javascripts/schedule.js +++ b/public/javascripts/schedule.js @@ -42,8 +42,8 @@ self._handleError = function (event) { self._getURLOfUsers = function (week, type, index) { const id = index + 1 - return `//${window.location.host}/meetingpointProxy/Roosters-AL%2Fdoc%2Fdagroosters%2F` + - `${(week)}%2F${type}%2F${type}${leftPad(id, 5, '0')}.htm` + return '//' + window.location.host + '/meetingpointProxy/Roosters-AL%2Fdoc%2Fdagroosters%2F' + + week + '%2F' + type + '%2F' + type + leftPad(id, 5, '0') + '.htm' } self.viewItem = function (week, selectedUser) { |