5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-04 16:35:44 +00:00
panel/app/assets/javascripts/input-tag.js

11 lines
198 B
JavaScript
Raw Normal View History

2019-08-16 23:25:07 +00:00
$(document).on('turbolinks:load', function() {
$('.taggable').each(function() {
this.innerHTML = '';
new InputTag({
target: this,
props: { ...this.dataset }
});
});
});