Vocabulary for Wanikani

Adds vocabulary to the wanikani dashboard

< Valutazione su Vocabulary for Wanikani

Domanda/commento

§
Pubblicato: 05/02/2017

Level display

I would suggest to show each level for vocabulary word on separate lines. I changed the display procedure to

      let sublist = document.createElement('ul');
        innerContainer.appendChild(sublist);
        this.vocabulary.forEach((word) => {
          if (word.isMarker) {
            sublist = document.createElement('ul');
            innerContainer.appendChild(sublist);
          }
          let wordElement = new WordElement(word);
          wordElement.attachTo(sublist);
      });

This makes looking at different level easier

EekoneAutore
§
Pubblicato: 05/02/2017

Updated

Pubblica risposta

Accedi per pubblicare una risposta.