Skip to content
This repository has been archived by the owner on Mar 16, 2022. It is now read-only.

RYFN/cordova-lookback

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cordova Lookback Plugin

Unofficial Cordova plugin for https://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 https://lookback.io