wagn.slotReady (slot) ->
  slot.find('.pointer-multiselect').each (i) ->
    $(this).attr 'data-placeholder', ' '
    $(this).chosen
      no_results_text: 'Press Enter to add new'
      skip_no_results: true
      width: '100%'
    return
  slot.find('.pointer-select').each (i) ->
    $(this).attr 'data-placeholder', ' '
    $(this).chosen
      no_results_text: 'No Result'
      skip_no_results: true
      width: '100%'
    return
  return