mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
Accessibility checks are now made before trying to access local storage. Fixes #174.
This commit is contained in:
parent
c60ec7c170
commit
e2cae035f2
5 changed files with 66 additions and 12 deletions
|
@ -229,7 +229,7 @@ OperationsWaiter.prototype.editFavouritesClick = function(e) {
|
|||
filter: ".remove-icon",
|
||||
onFilter: function (evt) {
|
||||
const el = editableList.closest(evt.item);
|
||||
if (el) {
|
||||
if (el && el.parentNode) {
|
||||
$(el).popover("destroy");
|
||||
el.parentNode.removeChild(el);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue