angularjs_indexedDB My git repo https://github.com/soiqualang/angularjs_indexedDB angularjs_indexedDB This is my note to work with indexedDB I used lib from here: https://github.com/bramski/angular-indexedDB AngularJS IndexedDB Cheatset Declare App
1 |
var app = angular.module('myApp', ['indexedDB']); |
Create Database db.createObjectStore(storeName, options); Declare a database store.createIndex(indexName, keyPath, options); Declare index for search […]