Heavily improved search

This commit is contained in:
2018-03-16 19:39:48 +01:00
parent 20981234f6
commit 754bca2c6f
2 changed files with 46 additions and 20 deletions

View File

@ -28,7 +28,11 @@ export class MutationQueue {
return
}
this.mutation(this.elements[i])
try {
this.mutation(this.elements[i])
} catch(err) {
console.error(err)
}
}
this.clear()
@ -66,7 +70,11 @@ export class CustomMutationQueue {
return
}
this.mutations[i]()
try {
this.mutations[i]()
} catch(err) {
console.error(err)
}
}
this.clear()