Commit fdfb2ca1 authored by Bryan Kaperick's avatar Bryan Kaperick

Changed the local storage option to now use 'historyStorage'.

parent 98635b88
...@@ -23,14 +23,17 @@ ...@@ -23,14 +23,17 @@
"local": { "local": {
"setConfiguration": function (gadget) { "setConfiguration": function (gadget) {
var configuration = { var configuration = {
type: "query",
sub_storage: {
type: "uuid", type: "uuid",
sub_storage: {
type: "history",
sub_storage: {
type: "query",
sub_storage: { sub_storage: {
type: "indexeddb", type: "indexeddb",
database: "local_default" database: "local_default"
} }
} }
}
}; };
return gadget.setSetting('jio_storage_description', configuration) return gadget.setSetting('jio_storage_description', configuration)
.push(function () { .push(function () {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment