sutty/app/assets/javascripts/input-tag.js

14 lines
360 B
JavaScript
Raw Normal View History

2020-11-20 00:23:23 +00:00
document.addEventListener('turbolinks:load', () => {
document.querySelectorAll('.taggable').forEach(target => {
target.innerHTML = ''
2019-08-16 23:25:07 +00:00
2020-11-20 00:23:23 +00:00
new InputTag({ target, props: { ...target.dataset } })
})
2020-01-28 21:05:59 +00:00
2020-11-20 00:23:23 +00:00
document.querySelectorAll('.mapable').forEach(target => {
target.innerHTML = ''
2020-01-28 21:05:59 +00:00
2020-11-20 00:23:23 +00:00
new InputMap({ target, props: { ...target.dataset } })
})
})