RYFN / cordova-lookback

Cordova plugin for https://lookback.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cordova Lookback Plugin

Unofficial Cordova plugin for http://lookback.io (v0.6.4)

This project has now been picked up by the lookback team, please check out https://github.com/lookback/cordova-lookback for the official plugin, ongoing development and support.

Methods will be accessable on the window.Lookback object.

Utilizes Lookback HD - NOT suitable for deployment to app store, use for testing only.

Install

Please see the official fork over at https://github.com/lookback/cordova-lookback

Currently supported functions

Most of the functionality of the Lookback class has been implimented.

setupWithAppToken

call this first, once, and after device ready.

shakeToRecord

true|false

userIdentifier

Some unique per-device identifier, or set to deviceName to use the currentDevice name as assigned by iOS. ([[UIDevice currentDevice] name]);

paused

true|false

enteredView

pass in a view name

exitedView

pass in a view name

Example

document.addEventListener('deviceready', function(){
        window.Lookback.setupWithAppToken('your-app-token');
        window.Lookback.shakeToRecord(true);
        window.Lookback.userIdentifier('some-id-here');
        // or 
        //window.Lookback.userIdentifier('deviceName');
    }, false);

or...

document.addEventListener('deviceready', function(){
    window.Lookback.setupWithAppToken('your-app-token');
    window.Lookback.shakeToRecord(false);
    window.Lookback.userIdentifier('some-id-here');
    
    window.Lookback.enteredView('my view name');
}, false);

License

Use of lookback.io Framework subject to terms available on http://lookback.io

About

Cordova plugin for https://lookback.io

License:ISC License


Languages

Language:Objective-C 96.4%Language:JavaScript 2.3%Language:C++ 1.3%