Vocabulary for Wanikani

Adds vocabulary to the wanikani dashboard

< 脚本 Vocabulary for Wanikani 的反馈

提问 / 留言

§
发布于:2017-02-05

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

Eekone作者
§
发布于:2017-02-05

Updated

发布留言

登录以发布留言。