From 18d4c9728f972e2b480b199e033e48b8c38d69d3 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Mon, 25 Jul 2016 15:02:04 -0400 Subject: [PATCH] updates --- dash/app.js | 18 ++++++++++++++++++ index.html | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) diff --git a/dash/app.js b/dash/app.js index 8b93f1e..d6c82fd 100644 --- a/dash/app.js +++ b/dash/app.js @@ -94,4 +94,22 @@ $(document).ready(function(){ el: '#leadsList', collection: leadsTasks}); + + // Petoskey Area + var petoskeyAreaTasks = new Tasks([ + ]); + petoskeyAreaTasks.url = prefixUrl + '/Dash/fetchTask.php'; + petoskeyAreaTasks.fetch({cache: false, async:true, data: {pid: 4049, t: bTime}}); + var petoskeyAreaList = new TaskListView({ + el: '#petoskeyAreaList', + collection: petoskeyAreaTasks}); + + // Member Leads + var petoskeyTasks = new Tasks([ + ]); + petoskeyTasks.url = prefixUrl + '/Dash/fetchTask.php'; + petoskeyTasks.fetch({cache: false, async:true, data: {pid: 4003, t: bTime}}); + var petoskeyList = new TaskListView({ + el: '#petoskeyList', + collection: petoskeyTasks}); }); diff --git a/index.html b/index.html index 5e7f59a..a099798 100644 --- a/index.html +++ b/index.html @@ -36,6 +36,40 @@
+
+ +
+

Petoskey Area

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

Petoskey.com

+ + + + + + + + + +
EmployeeStatusTask NameDeadline
+
+ +
+
-- 2.17.1