dtaniwaki/e2e-tester

View on GitHub
app/assets/javascripts/ext/bootstrap.es6

Summary

Maintainability
Test Coverage
$(document).on('turbolinks:load', function() {
  $('[data-toggle="tooltip"]').tooltip()

  $('[data-toggle="selectpicker"]').each(function(idx){
    let $this = $(this)
    $this.closest('.bootstrap-select').after($this).remove()
    $this.selectpicker({size: $(this).find('option').length, showIcon: false})
  })
})