ToDo List - WebSQL To IndexedDB Live Example
-
-
diff --git a/notes.html b/notes.html
deleted file mode 100644
index 80792eb..0000000
--- a/notes.html
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/test-onupgrade.html b/test-onupgrade.html
deleted file mode 100644
index 7b4bc6a..0000000
--- a/test-onupgrade.html
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/todo-indexedDB-example.html b/todo-indexedDB-example.html
index ab311fc..be8fec4 100644
--- a/todo-indexedDB-example.html
+++ b/todo-indexedDB-example.html
@@ -1,6 +1,5 @@
-<<<<<<< HEAD
ToDo List with IndexedDB
@@ -8,18 +7,6 @@
var READ_WRITE = 'readwrite';
var READ_ONLY = 'readonly';
var dbName = "todo2";
-=======
-
-
- ToDo List with IndexedDB
-
-
-
-
-
-
-<<<<<<< HEAD
ToDo list - IndexedDB Example
@@ -279,17 +211,3 @@
Todos
-=======
-
-
-
ToDo list - IndexedDB Example
-
-
-
-
-
Todos
-
-
-
-
->>>>>>> fix the version upgrade to work both on Chrome and FF
diff --git a/todo-webSQL-example.html b/todo-webSQL-example.html
index 86158dc..27feefa 100644
--- a/todo-webSQL-example.html
+++ b/todo-webSQL-example.html
@@ -4,7 +4,6 @@
Todo in webSQL
-
@@ -90,7 +89,7 @@
Todos
});
}
- function deleteTodo(id, text) {
+ function deleteTodo(id, text) {
if (confirm("Are you sure you want to Delete "+ text +"?")) {
database.transaction(function(tx) {
tx.executeSql('DELETE FROM tasks WHERE id=?', [id]);