Skip to content

Instantly share code, notes, and snippets.

@sampottinger
Created February 4, 2014 22:15
Show Gist options
  • Save sampottinger/8813457 to your computer and use it in GitHub Desktop.
Save sampottinger/8813457 to your computer and use it in GitHub Desktop.
Module template
function onModuleLoad () {
}
$.ready(function () {
var framework = new Framework();
framework.on('onModuleLoad', onModuleLoad);
//...
framework.setDeviceView('index.html', ['test.json'], {}, onErr, onSuccess);
framework.startLoop();
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment