From 036d680ba3df1f2ee9ae73823188509f0bbb4cac Mon Sep 17 00:00:00 2001 From: Neil Brommer Date: Fri, 29 Dec 2017 20:23:34 -0800 Subject: [PATCH] Remove unused method --- js/main.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/js/main.js b/js/main.js index 8399082..8959551 100644 --- a/js/main.js +++ b/js/main.js @@ -47,11 +47,3 @@ function setBackground(num, 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; -}