Skip to main content

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.

ParamType
init_functionfunction

Example

Sipa.init(() => {
SipaPage.load('login');
});