Skip to content

Instantly share code, notes, and snippets.

@johntomcy
johntomcy / app.js
Last active February 22, 2016 15:11 — forked from jgoux/app.js
AngularJS service wrapper for Web SQL API / SQLite-Cordova-Plugin specifically for Angular based web/mobile application
angular.module('myApp', ['myApp.services', 'myApp.controllers'])
.run(function(DB) {
DB.init();
});