Skip to content

Commit

Permalink
Merge pull request webcss#35 from Kodegenix/issue-32
Browse files Browse the repository at this point in the history
IE 11 Illegal Access Error fix webcss#32
  • Loading branch information
bramski committed Mar 1, 2016
2 parents df0d642 + a44a0bb commit 47facce
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 @@ -102,7 +102,7 @@ angular.module('indexedDB', []).provider '$indexedDB', ->

createDatabaseConnection = ->
deferred = $q.defer()
dbReq = indexedDB.open(dbName, dbVersion or 1)
dbReq = indexedDB.open(dbName, parseInt(dbVersion) || 1)
dbReq.onsuccess = ->
db = dbReq.result
$rootScope.$apply ->
Expand Down

0 comments on commit 47facce

Please sign in to comment.