Skip to content

Commit

Permalink
Add shimIndexedDB compatibility. issue webcss#31
Browse files Browse the repository at this point in the history
  • Loading branch information
wibimaster committed Mar 24, 2016
1 parent f369ddf commit fab98ca
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion angular-indexed-db.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion angular-indexed-db.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion angular-indexed-db.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion angular-indexed-db.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/angular-indexed-db.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'use strict'

angular.module('indexedDB', []).provider '$indexedDB', ->
indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB
indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB || window.shimIndexedDB
IDBKeyRange = window.IDBKeyRange || window.mozIDBKeyRange || window.webkitIDBKeyRange || window.msIDBKeyRange

dbMode =
Expand Down

0 comments on commit fab98ca

Please sign in to comment.