aboutsummaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2016-09-05 11:48:35 +0200
committerNoah Loomans <noahloomans@gmail.com>2016-09-05 11:48:35 +0200
commitff5f463f77d7eef492d3ae926ce65cdfdb45dfdb (patch)
tree98f49919e17bfa146995494ff686c7777c19c065 /public
parent6334883385a123ba67c808c1ecf7f2cbe2000d4a (diff)
Actualy fixed safari
Diffstat (limited to 'public')
-rw-r--r--public/javascripts/bundle.js48
-rw-r--r--public/javascripts/getUsers.js48
2 files changed, 56 insertions, 40 deletions
diff --git a/public/javascripts/bundle.js b/public/javascripts/bundle.js
index c2a9af8..b15380a 100644
--- a/public/javascripts/bundle.js
+++ b/public/javascripts/bundle.js
@@ -96739,7 +96739,7 @@ const cheerio = require('cheerio')
const request = Promise.promisify(require('request'))
module.exports = function () {
- return new Promise((resolve, reject) => {
+ return new Promise(function (resolve, reject) {
request(`http://${window.location.host}/meetingpointProxy/Roosters-AL%2Fdoc%2Fdagroosters%2Fframes%2Fnavbar.htm`)
.then(function (page) {
page = page.body
@@ -96752,26 +96752,34 @@ module.exports = function () {
const items = regexs.map(regex => scriptText.match(regex)[1].split(',').map(item => item.replace(/"/g, '')))
resolve([]
- .concat(items[0].map((item, index) => ({
- type: 'c',
- value: item,
- index: index
- })))
- .concat(items[1].map((item, index) => ({
- type: 't',
- value: item,
- index: index
- })))
- .concat(items[2].map((item, index) => ({
- type: 'r',
- value: item,
- index: index
+ .concat(items[0].map(function (item, index) {
+ return {
+ type: 'c',
+ value: item,
+ index: index
+ }
+ }))
+ .concat(items[1].map(function (item, index) {
+ return {
+ type: 't',
+ value: item,
+ index: index
+ }
+ }))
+ .concat(items[2].map(function (item, index) {
+ return {
+ type: 'r',
+ value: item,
+ index: index
+ }
+ }))
+ .concat(items[3].map(function (item, index) {
+ return {
+ type: 's',
+ value: item,
+ index: index
+ }
})))
- .concat(items[3].map((item, index) => ({
- type: 's',
- value: item,
- index: index
- }))))
})
})
}
diff --git a/public/javascripts/getUsers.js b/public/javascripts/getUsers.js
index fb54659..34f7b3b 100644
--- a/public/javascripts/getUsers.js
+++ b/public/javascripts/getUsers.js
@@ -3,7 +3,7 @@ const cheerio = require('cheerio')
const request = Promise.promisify(require('request'))
module.exports = function () {
- return new Promise((resolve, reject) => {
+ return new Promise(function (resolve, reject) {
request(`http://${window.location.host}/meetingpointProxy/Roosters-AL%2Fdoc%2Fdagroosters%2Fframes%2Fnavbar.htm`)
.then(function (page) {
page = page.body
@@ -16,26 +16,34 @@ module.exports = function () {
const items = regexs.map(regex => scriptText.match(regex)[1].split(',').map(item => item.replace(/"/g, '')))
resolve([]
- .concat(items[0].map((item, index) => ({
- type: 'c',
- value: item,
- index: index
+ .concat(items[0].map(function (item, index) {
+ return {
+ type: 'c',
+ value: item,
+ index: index
+ }
+ }))
+ .concat(items[1].map(function (item, index) {
+ return {
+ type: 't',
+ value: item,
+ index: index
+ }
+ }))
+ .concat(items[2].map(function (item, index) {
+ return {
+ type: 'r',
+ value: item,
+ index: index
+ }
+ }))
+ .concat(items[3].map(function (item, index) {
+ return {
+ type: 's',
+ value: item,
+ index: index
+ }
})))
- .concat(items[1].map((item, index) => ({
- type: 't',
- value: item,
- index: index
- })))
- .concat(items[2].map((item, index) => ({
- type: 'r',
- value: item,
- index: index
- })))
- .concat(items[3].map((item, index) => ({
- type: 's',
- value: item,
- index: index
- }))))
})
})
}