Skip to content

WF Toolkit Info

AlterTobi edited this page Sep 28, 2021 · 1 revision

Daten und Events von WFT

  • window.wft.profileApp = {};
  • window.wft.profileApp.profileStats = t.profileStats;
  • modEvent = new Event("WFTProfileLoad");
  • window.dispatchEvent(modEvent);
  • window.wft.nominationsApp = {};
  • window.wft.nominationsApp.listData=t;
  • modEvent = new Event('WFTNominationListLoad');
  • window.dispatchEvent(modEvent);
  • setTimeout(() => {let modEvent = new Event('WFTNominationSelected'); window.dispatchEvent(modEvent); },1);
  • window.wft.nominationsApp.selectedNomination = this;
  • window.wft.nominationsApp.listController = this;
  • window.wft.wfConstants ="";
  • window.dispatchEvent(new Event("WFTConstantsLoad"));
  • window.wft.reviewApp = {};
  • window.wft.reviewApp.pageData = this.reviewData;
  • window.dispatchEvent(new Event("WFTNewReviewPageLoad"));
  • window.wft.reviewApp.reviewController = this;
  • window.dispatchEvent(new Event("WFTReviewPageLoad"));
Clone this wiki locally