diff options
author | Noah Loomans <noahloomans@gmail.com> | 2016-12-22 12:58:46 +0100 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2016-12-22 12:58:46 +0100 |
commit | b64a31f1a31469e411945ce4f500fc11797c3406 (patch) | |
tree | 90074190708350d8da67c132e85ae98a765935a3 /public/javascripts/featureDetect.js | |
parent | 2783e1cee5fe505c7155d1b4c9c40a4bb72b1661 (diff) |
add feature detect
Diffstat (limited to 'public/javascripts/featureDetect.js')
-rw-r--r-- | public/javascripts/featureDetect.js | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/public/javascripts/featureDetect.js b/public/javascripts/featureDetect.js new file mode 100644 index 0000000..3a072a1 --- /dev/null +++ b/public/javascripts/featureDetect.js @@ -0,0 +1,29 @@ +/* global FLAGS */ + +const self = {} + +self._nodes = { + input: document.querySelector('input[type="search"]'), + overflowButton: document.querySelector('#overflow-button') +} + +self._shouldCheck = function () { + return FLAGS.indexOf('NO_FEATURE_DETECT') === -1 +} + +self._redirect = function () { + window.location.href = 'http://www.meetingpointmco.nl/Roosters-AL/doc/' +} + +self.check = function () { + if (!self._shouldCheck()) return + + window.onerror = self._redirect + + if (self._nodes.input.getClientRects()[0].top !== + self._nodes.overflowButton.getClientRects()[0].top) { + self._redirect() + } +} + +module.exports = self |