-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
30 lines (29 loc) · 877 Bytes
/
test.html
File metadata and controls
30 lines (29 loc) · 877 Bytes
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
<!DOCTYPE html><!--[if IE 8]><html class="ie8" lang="en"><![endif]-->
<!--[if IE 9]><html lang="en" class="ie9"><![endif]-->
<!--[if !IE]><!-->
<html lang="en"><!--<![endif]-->
<head>
<title>test</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
</head>
<body>
<div id="testPluginContainer">testPlugin</div>
<div id="testWidgetContainer">testWidget</div>
<script src="assets/scripts/vendor.min.js"></script>
<script src="assets/scripts/packadic.js"></script>
<script>
// last
var app = packadic.Application.instance;
app.DEBUG = true;
app.init({
hello: 'test'
});
app.boot().then(function(app){
$('#testPluginContainer').testPlugin({
});
$('#testWidgetContainer').testWidget({});
});
</script>
</body>
</html>