This commit is contained in:
Stephan Porada
2020-04-23 12:07:08 +02:00
parent 191f197b6c
commit d9353e3d7d
2 changed files with 22 additions and 24 deletions

View File

@ -129,8 +129,11 @@ RessourceList.options = {
class ResultsList extends List {
constructor(idOrElement, options={}) {
super(idOrElement, options);
this.eventTokens = {}; // all span tokens which are holdeing events if expert mode is on
this.currentExpertTokenElements = {};
this.eventTokens = {}; // all span tokens which are holdeing events if expert
// mode is on. Collected here to delete later on
this.currentExpertTokenElements = {}; // all token elements which have added
// classes like chip and hoverable for expert view. Collected
//here to delete later on
}