Sha256: 0077cad39725d6dc0358e874e8fa2099bc787e09ca7f0b84f4bae4498de8d59b

Contents?: true

Size: 854 Bytes

Versions: 34

Compression:

Stored size: 854 Bytes

Contents

init_plugin = (parent) ->
  return unless $('select.select2').length
  
  # Just incase anything's changed, refresh select2 via triggering a 'change' event
  parent.find('select.select2').trigger 'change'

  parent.find('select.select2').select2
    dropdownParent: parent

$ ->
  doc = $(document)
  body = $('body')
  modal = $('.modal')

  init_plugin body
  
  # use 'shown' tense on modal event
  # otherwise, no guarantee that the select menu will be on the page yet
  doc.on 'shown.bs.modal', '.modal', (e) ->
    init_plugin $('.modal-body')
    modal.attr 'tabindex', '' # remove negative tab index, per select2 docs on modals

  # Likewise with the shown.bs.modal, the same applies here for re-initializing on body
  # after the a tooltipped element is removed from the page
  doc.on 'hidden.bs.modal ajax:success', (e) ->
    init_plugin body

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
nfg_ui-0.10.1 app/assets/javascripts/nfg_ui/select2.coffee
nfg_ui-0.10 app/assets/javascripts/nfg_ui/select2.coffee
nfg_ui-0.9.28 app/assets/javascripts/nfg_ui/select2.coffee
nfg_ui-0.9.27 app/assets/javascripts/nfg_ui/select2.coffee
nfg_ui-0.9.26 app/assets/javascripts/nfg_ui/select2.coffee
nfg_ui-0.9.25.1 app/assets/javascripts/nfg_ui/select2.coffee
nfg_ui-0.9.25 app/assets/javascripts/nfg_ui/select2.coffee
nfg_ui-0.9.24.3 app/assets/javascripts/nfg_ui/select2.coffee
nfg_ui-0.9.24.2 app/assets/javascripts/nfg_ui/vendor/select2.coffee
nfg_ui-0.9.24.1 app/assets/javascripts/nfg_ui/vendor/select2.coffee
nfg_ui-0.9.24 app/assets/javascripts/nfg_ui/vendor/select2.coffee
nfg_ui-0.9.23 app/assets/javascripts/nfg_ui/vendor/select2.coffee
nfg_ui-0.9.22 app/assets/javascripts/nfg_ui/vendor/select2.coffee
nfg_ui-0.9.21 app/assets/javascripts/nfg_ui/vendor/select2.coffee
nfg_ui-0.9.20 app/assets/javascripts/nfg_ui/vendor/select2.coffee
nfg_ui-0.9.19.1 app/assets/javascripts/nfg_ui/vendor/select2.coffee
nfg_ui-0.9.19 app/assets/javascripts/nfg_ui/vendor/select2.coffee
nfg_ui-0.9.18.3 app/assets/javascripts/nfg_ui/vendor/select2.coffee
nfg_ui-0.9.18.2 app/assets/javascripts/nfg_ui/vendor/select2.coffee
nfg_ui-0.9.18.1 app/assets/javascripts/nfg_ui/vendor/select2.coffee