-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_index.html
More file actions
45 lines (44 loc) · 1.47 KB
/
example_index.html
File metadata and controls
45 lines (44 loc) · 1.47 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Components</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="/common-libs/css/bootstrap.min.css">
<link rel="stylesheet" href="/common-libs/puf/libs/styles/kendo/kendo.common.min.css" />
<link rel="stylesheet" href="/common-libs/puf/libs/styles/kendo/kendo.bootstrap.min.css" />
</head>
<body>
<div id="app"></div>
<script type="text/javascript" src="/common-libs/js/jquery-3.1.0.min.js"></script>
<script type="text/javascript" src="/common-libs/puf/libs/kendo.all.min.js"></script>
<script type="text/javascript" src="/common-libs/puf/i18n/ps-locale_ko.min.js"></script>
<script type="text/javascript" src="/common-libs/puf/scripts/react-puf.min.js"></script>
<!--
<script type="text/javascript" src="/common-libs/plugins/jquery.i18n.properties.min.js"></script>
-->
<script>
// jQuery i18n Load Properties
/*
$.i18n.properties({
name:'Messages',
path:'/common-libs/plugins/bundle/',
mode:'both',
language:"ko",
callback: function() {}
});
*/
/*
$.i18n.properties({
name:['messages-itg','resources-itg','buttons-itg'],
path:'http://localhost:8090/itg/base/properties.do?propertiesName=',
mode:'both',
language:"ko_KR",
callback: function() {}
});
localStorage["Test"] = "테스트";
*/
</script>
<script type="text/javascript" src="bundle.js"></script>
</body>
</html>