Sha256: f5cba0e84d2fff2ff9a481f8435ab7dd91ececec81cb7103c592e5dfc521c9a0

Contents?: true

Size: 860 Bytes

Versions: 1

Compression:

Stored size: 860 Bytes

Contents

$(document).ready(function() {
  var searchIcons = document.querySelectorAll('#nav-bar .search-icons')[0]
  var searchDropdown = document.getElementById('search-dropdown')

  if (searchIcons !== undefined) {
    searchIcons.addEventListener(
      'click',
      toggleSearchBar,
      false
    )
  }

  function toggleSearchBar() {
    if (searchDropdown.classList.contains('shown')) {
      document.querySelector('.header-harpiya').classList.remove('above-overlay')
      document.getElementById('overlay').classList.remove('shown')
      searchDropdown.classList.remove('shown')
    } else {
      document.querySelector('.header-harpiya').classList.add('above-overlay')
      document.getElementById('overlay').classList.add('shown')
      searchDropdown.classList.add('shown')
      document.querySelector('#search-dropdown input').focus()
    }
  }
})

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
harpiya_frontend-4.3.0.alpha app/assets/javascripts/harpiya/frontend/views/harpiya/shared/nav_bar.js