Joseph Gimness

Results 3 comments of Joseph Gimness

Here's a fix, add a watcher and re-observe the disconnected observer watch: { src(newSrc, oldSrc) { if ("IntersectionObserver" in window) { this.intersected = false this.observer.observe(this.$el) } } }, One last...

Here's a solution that ties into the paste event. I put the code in around line [224](https://github.com/aehlke/tag-it/blob/master/js/tag-it.js#L224), right before the keydown bind. ``` javascript this.tagInput.bind('paste', function (event) { // Set...

@Ecroyd Same as issue: #139 Here's a solution that ties into the paste event. I put the code in around line [224](https://github.com/aehlke/tag-it/blob/master/js/tag-it.js#L224), right before the keydown bind. ``` javascript this.tagInput.bind('paste',...