aboutsummaryrefslogtreecommitdiff
path: root/public/javascripts/frontpage.js
blob: 17cb539f95bbeeebd3b9c7d62b880d1943652426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
const browserFixToolkit = require('./browserFixToolkit')

const self = {}

self._nodes = {
  input: document.querySelector('input[type="search"]')
}

self.isShown = false

self.show = function () {
  document.body.classList.add('no-input')
  self.isShown = true
}

self.hide = function () {
  document.body.classList.remove('no-input')
  self.isShown = false
}

self._nodes.input.addEventListener(browserFixToolkit.inputEvent, self.hide)

module.exports = self