Fliplet common functions

Fliplet common functions

Utility helpers on the global Fliplet object: Fliplet.compile() for templating and Fliplet.guid() for unique IDs.

Compile

Compiles a string with a handlebars-like template replacement.

var compiledString = Fliplet.compile('Hello ', { name: 'Nick' });

Guid

Generates a global unique identifier with a format like: "2682df5f-2679-7de5-c04c-d212f4314897"

var guid = Fliplet.guid();

Further reading

Fliplet.Navigate

Learn how to navigate between different screens of your app or open a webpage.

Fliplet.Storage

Learn how to read and write persistent data locally on the device or web browser.