Merge pull request #2 from BlockBuilder57/patch-1

Change init hook to 1ms because it works
This commit is contained in:
Cynthia Foxwell 2018-05-29 16:18:13 -06:00 committed by GitHub
commit e39e5f596d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -230,6 +230,6 @@ exports = {
}
$api.events.hook("USER_SETTINGS_MODAL_SET_SECTION",setupSettings);
$api.events.hook("USER_SETTINGS_MODAL_INIT",e=>setTimeout(_=>setupSettings(e),200));
$api.events.hook("USER_SETTINGS_MODAL_INIT",e=>setTimeout(_=>setupSettings(e),1));
}
}