From ee9246af8e093ba79c126385809e76a52b40ccc0 Mon Sep 17 00:00:00 2001 From: Noah Loomans Date: Mon, 5 Sep 2016 20:42:00 +0200 Subject: fixed bundle --- public/javascripts/bundle.js | 46 -------------------------------------------- 1 file changed, 46 deletions(-) (limited to 'public/javascripts/bundle.js') diff --git a/public/javascripts/bundle.js b/public/javascripts/bundle.js index 9f68601..0a40d81 100644 --- a/public/javascripts/bundle.js +++ b/public/javascripts/bundle.js @@ -72634,51 +72634,6 @@ const request = Promise.promisify(require('request')) module.exports = function () { return request(`http://${window.location.host}/getUserIndex`) .then(data => JSON.parse(data.body)) - // request(`http://${window.location.host}/meetingpointProxy/Roosters-AL%2Fdoc%2Fdagroosters%2Fframes%2Fnavbar.htm`) - // .then(function (page) { - // page = page.body - // - // const $ = cheerio.load(page) - // const $script = $('script').eq(1) - // const scriptText = $script.text() - // - // const regexs = [/var classes = \[(.+)\];/, /var teachers = \[(.+)\];/, /var rooms = \[(.+)\];/, /var students = \[(.+)\];/] - // 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) { - // 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 - // } - // }))) - // }) } },{"bluebird":179,"request":255}],307:[function(require,module,exports){ @@ -72727,7 +72682,6 @@ getUsers().then(function (users) { results.forEach(function (result) { const resultNode = document.createElement('li') - console.log(result) resultNode.innerHTML = `${result.original.value}${result.original.other}` autocompleteNode.appendChild(resultNode) }) -- cgit v1.1