Remove unused method

This commit is contained in:
Neil Brommer 2017-12-29 20:23:34 -08:00
parent 948256ab37
commit 036d680ba3

View file

@ -47,11 +47,3 @@ function setBackground(num, dark) {
$(".navbar-toggler").removeClass("toggler-bg-light btn-light").addClass("toggler-bg-dark btn-dark"); $(".navbar-toggler").removeClass("toggler-bg-light btn-light").addClass("toggler-bg-dark btn-dark");
} }
} }
function initDB(db) {
// use a table to keep track of the order of groups
var groupStore = db.createObjectStore("groupIndexes", { keyPath: "title" });
groupStore.createIndex("title", "groupName", { unique: true });
groupStore.createIndex("groupIndex", "groupIndex", { unique: true });
return groupStore;
}