Sha256: 8c57f0cbb08936ad02258f2c96752f18a31f56c3b49de294a90792fe84e8d7c2

Contents?: true

Size: 353 Bytes

Versions: 1

Compression:

Stored size: 353 Bytes

Contents

AppRouter = {
  new_email_context_with: (slug) => `/manager/email_contexts/new_with/${slug}`
}

$(document).ready(() => {

  if ($(".email-contexts--form").length) {
    $("#ish_email_context_email_template_id").on('change', (ev) => {
      const val = ev.target.value
      window.location.href = AppRouter.new_email_context_with(val)
    })
  }

})

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ish_manager-0.1.8.328 app/assets/javascripts/ish_manager/email_contexts.js