sfeir-open-source / talk-control

This project aims to make speakers' life easier by supplying an app to remotely control their slideshow.
Apache License 2.0
2 stars 5 forks source link

Fix touch-pointer remove process #89

Closed devrasec closed 4 years ago

devrasec commented 4 years ago

The init method was called twice, resulting in the creation of 2 pointers, and the "remove" method only removes one of them, the one returned by getElementById which only returns the first element found.

This PR solves this issue by preventing plugins from being reinitialized.

Fixes #81