From 0bf0cddc5c6c8bce34a9df1e376759eb5773d16b Mon Sep 17 00:00:00 2001 From: Noah Loomans Date: Mon, 5 Sep 2016 16:29:30 +0200 Subject: I think I actualy did safari this time --- public/javascripts/getUsers.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'public/javascripts/getUsers.js') diff --git a/public/javascripts/getUsers.js b/public/javascripts/getUsers.js index 34f7b3b..ac09ef4 100644 --- a/public/javascripts/getUsers.js +++ b/public/javascripts/getUsers.js @@ -13,7 +13,11 @@ module.exports = function () { const scriptText = $script.text() const regexs = [/var classes = \[(.+)\];/, /var teachers = \[(.+)\];/, /var rooms = \[(.+)\];/, /var students = \[(.+)\];/] - const items = regexs.map(regex => scriptText.match(regex)[1].split(',').map(item => item.replace(/"/g, ''))) + const items = regexs.map(function (regex) { + return scriptText.match(regex)[1].split(',').map(function (item) { + return item.replace(/"/g, '') + }) + }) resolve([] .concat(items[0].map(function (item, index) { -- cgit v1.1