-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (21 loc) · 934 Bytes
/
index.html
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
<!DOCTYPE HTML>
<html manifest="">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=10, user-scalable=yes">
<title>Admin</title>
<script>
window.Admin = window.Admin || {};
Admin.local = window.location.search.match(/\blocal\b/); // Whole word "local"
Admin.url = function(service) {
return (Admin.local ? 'resources/data/' : 'https://adminDEV.renstudent.com/ProgramEnrollmentAdmin') + service;
}
</script>
<!-- The line below must be kept intact for Sencha Cmd to build your application -->
<script id="microloader" data-app="3e22574f-5134-491c-80e3-f37fa65aa5bc"
type="text/javascript" src="bootstrap.js"></script>
</head>
<body></body>
</html>