Sipa
Sipa
Sipa
Framework core class to provide core functionality.
Sipa.getVersion() → string
Get the version of the used library
Sipa.init(init_function)
Callback function to fire to init the whole Sipa app.
This is the entry point for your app. The given callback is called after Sipa is initialized.
Param | Type |
---|---|
init_function | function |
Example
Sipa.init(() => {
SipaPage.load('login');
});