highkite / pdfAnnotate

Javascript library for creating annotations in PDF documents
MIT License
556 stars 90 forks source link

Fix/deleteAnnotation #38

Closed SimonErm closed 3 years ago

SimonErm commented 3 years ago

Currently the removeAnnotation method doesn't remove the specified annotation, because slice is used like splice for removal.

This PR adds a test for deleteAnnotation and fixes the behaviour by using slice in the correct way to delete an element of the array.

References: