diff options
author | Noah Loomans <noahloomans@gmail.com> | 2016-09-05 16:29:30 +0200 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2016-09-05 16:29:30 +0200 |
commit | 0bf0cddc5c6c8bce34a9df1e376759eb5773d16b (patch) | |
tree | fbd447fc33ecb31a7234514821cf345624ee78c2 /public/javascripts/bundle.js | |
parent | 8e4c9d666672e415957ae8b99e7ab400342f8b98 (diff) |
I think I actualy did safari this time
Diffstat (limited to 'public/javascripts/bundle.js')
-rw-r--r-- | public/javascripts/bundle.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/public/javascripts/bundle.js b/public/javascripts/bundle.js index 0b22d45..f0b523a 100644 --- a/public/javascripts/bundle.js +++ b/public/javascripts/bundle.js @@ -96749,7 +96749,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) { @@ -96825,7 +96829,7 @@ getUsers().then(function (users) { results = fuzzy.filter(inputNode.value, users, { pre: '<strong>', post: '</strong>', - extract: el => el.value + extract: function (el) { return el.value } }).slice(0, 7) matches = results.map(function (el) { return el.string }) |