jquery-indexeddb icon indicating copy to clipboard operation
jquery-indexeddb copied to clipboard

An IndexedDB Plugin for Jquery.

Results 18 jquery-indexeddb issues
Sort by recently updated
recently updated
newest added

Seems that the index count method automatically submit an empty array of argument rather than the arguments I give it - Line 501 : "count": function() { return indexOp("count", indexName...

For those who are not used to either native IndexedDB or jquery-indexeddb, the behavior of jquery-indexeddb's createIndex compared to native is totally reversed. The spec says for createIndex (https://developer.mozilla.org/en-US/docs/Web/API/IDBObjectStore#createIndex()): in...

I modify the demo from https://bitbucket.org/axemclion/indexeddb-cordova-android.git to test how jquery-indexeddb index works on an array property. I add the categories property ( of array type) to the catalog.json, like the...

I have a table with 2000 rows, automatic id with auto increment. Indexed on id and 3 other columns. (3 columns makes a composite key). When I open the object...

Browser: 27.0.1453.116 Code: ``` javascript batchAdd: function(tableName, items, i, success, failure) { var that = this; var objectStore = $.indexedDB(constants.DbName).objectStore(tableName); if(items.length > i) { objectStore.add(items[i]).done(function() { console.log("batchAdd success"); that.batchAdd(tableName, items,...

There's a minor flaw with the IndexedDB object detection logic. IDBCursor is set to either window.IDBCursor or window.webkitIDBCursor, but if neither of these exist there is no fallback. That's not...

The current placement of the use strict statement makes it slightly awkward to concatenate jquery.indexeddb.js with other files. If it were inside the anonymous function, it would only affect that...

Just discovered that on some android browsers ( usually the native browser ) the indexedDB's "deleteDatabase" method is not supported. See axemclion/IndexedDBShim#37 for details. Should be added a test case...