Notify about the completion of the installer BX24.installFinish
BX24.installFinish(): void;
The function BX24.installFinish indicates the completion of the installer or application setup.
If the function is called during the installer startup phase, the page will reload and the application will launch. If called during the setup phase, it will trigger the handlers for BX24.init. In other cases, there will be no effect from the call.
No parameters.
Example
document.addEventListener("DOMContentLoaded", function() {
BX24.init(function(){
BX24.installFinish();
});
});
Continue your study
- Initialize the BX24.init Library
- Handle the first launch event of the application by the user BX24.install
- Get Data for OAuth 2.0 BX24.getAuth
- Force Update Authorization Key BX24.refreshAuth
Copied