This repository was archived by the owner on May 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
93 lines (83 loc) · 3.3 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
(function() {
var HandbookApp = angular.module("Handbook", [
'ngSanitize',
'ui.bootstrap',
'ui.router'
]);
HandbookApp.constant("CONFIG", {
"FILES": [
"https://s3.amazonaws.com/provider-handbook/SM+EH1001+Equal+Employment+Opportunity+Policy.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH1002+Code+of+Business+Ethics.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH2001+Patient+Bill+of+Rights.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH2002+Confidential+Information.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH2003+National+Patient+Safety+Goals.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH2004+Centers+for+Disease+Control+Hand+Hygiene+Guidelines.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH2005+Ethical+Standards.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH2006+Code+of+Conduct.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH3003+Assignment+Cancellation.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH4001+Provider+Credentialing+Procedures.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH4002+Provider+Rights+and+Responsibilities.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH5001+Quality+of+Care+Incident+Reporting.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH6001+Cultural+Diversity+in+Nursing+Practice.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH6002+Americans+with+Disabilities+Act.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH6003+Grievance+Policy.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH6004+Emergency+Management+Plan.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH6005+Harrassment+Policy.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH7001+Performance+Management.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH8001+Platform+Privacy+Policy.pdf",
"https://s3.amazonaws.com/provider-handbook/SM+EH8002+Terms+of+Service.pdf",
]
});
HandbookApp.config(function($logProvider) {
// $logProvider.debugEnabled(true);
$logProvider.debugEnabled(false);
});
HandbookApp.config(function($locationProvider, $stateProvider, $urlRouterProvider) {
$locationProvider.html5Mode(true);
$urlRouterProvider.otherwise("/");
$stateProvider.state("home", {
url: "/",
templateUrl: "home.html"
});
});
HandbookApp.controller("ApplicationController", [
"$log",
"$scope",
function($log, $scope) {
$log.debug("ApplicationController");
$scope.alerts = [
{
"msg": "This is the Shift Medical Employee Handbook. For additional info <a href='mailto:[email protected]'>contact our support team.</a>",
"timeout": 10 * 1000,
},
];
$scope.addAlert = function(alert) {
$scope.alerts.push(alert);
};
$scope.closeAlert = function(index) {
$scope.alerts.splice(index, 1);
};
}
]);
HandbookApp.controller("HandbookFilesListController", [
"$log",
"$scope",
"CONFIG",
function($log, $scope, CONFIG) {
$log.debug("HandbookFilesListController");
function get_filename(url) {
filenamePart = url.substring(url.lastIndexOf('/')+1);
return filenamePart;
}
$scope.items = [];
for (var idx in CONFIG.FILES) {
var f = CONFIG.FILES[idx];
var item = {
name: get_filename(f),
url: f,
};
$scope.items.push(item);
}
}
]);
}());