From: Steve Sutton Date: Mon, 10 Jul 2017 12:35:14 +0000 (-0400) Subject: updates X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=121e687ec2e8594cb4fe24d73566f849d23f47b9;p=prog%2FDash.git updates --- diff --git a/dash/app.js b/dash/app.js index a74af56..273dbb4 100644 --- a/dash/app.js +++ b/dash/app.js @@ -4,7 +4,25 @@ $(document).ready(function(){ var bDate = new Date(); var bTime = bDate.getTime(); - // Mich Trail Maps + // Trout Creek + var troutcreekTasks = new Tasks([ + ]); + troutcreekTasks.url = prefixUrl + '/Dash/fetchTask.php'; + troutcreekTasks.fetch({cache: false, async:true, data: {pid: 4147, t: bTime}}); + var troutcreekList = new TaskListView({ + el: '#troutcreekList', + collection: troutcreekTasks}); + + // Baraga County + var baragaTasks = new Tasks([ + ]); + baragaTasks.url = prefixUrl + '/Dash/fetchTask.php'; + baragaTasks.fetch({cache: false, async:true, data: {pid: 4131, t: bTime}}); + var baragaList = new TaskListView({ + el: '#baragaList', + collection: baragaTasks}); + + // // Mich Trail Maps var trailmapsTasks = new Tasks([ ]); trailmapsTasks.url = prefixUrl + '/Dash/fetchTask.php'; @@ -13,16 +31,7 @@ $(document).ready(function(){ el: '#trailmapsList', collection: trailmapsTasks}); - // Charlevoix Library - var chxlibraryTasks = new Tasks([ - ]); - chxlibraryTasks.url = prefixUrl + '/Dash/fetchTask.php'; - chxlibraryTasks.fetch({cache: false, async:true, data: {pid: 4076, t: bTime}}); - var chxlibraryList = new TaskListView({ - el: '#chxlibraryList', - collection: chxlibraryTasks}); - - // Event Calender + // Event Calendar var eventcTasks = new Tasks([ ]); eventcTasks.url = prefixUrl + '/Dash/fetchTask.php'; diff --git a/index.html b/index.html index 28d3b93..8cd9c90 100644 --- a/index.html +++ b/index.html @@ -34,6 +34,39 @@
+ +
+ +
+

Trout Creek

+ + + + + + + + + +
EmployeeStatusTask NameDeadline
+
+ +
+

Baraga County

+ + + + + + + + + +
EmployeeStatusTask NameDeadline
+
+
@@ -106,7 +139,7 @@