forked from WebCabin/wcDocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexDev_bower.html
95 lines (74 loc) · 2.55 KB
/
indexDev_bower.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
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
94
95
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>wcDocker (Web Cabin)</title>
<meta name="description"
content="wcDocker is a responsive IDE interface designed for the developer at heart! Compartmentalize your environment into smaller components, put each of those parts into a docker panel, and organize your environment however you like, whenever you like!">
<!-- External Modules -->
<link rel="stylesheet" type="text/css" href="bower_components/jQuery-contextMenu/src/jquery.contextMenu.css"/>
<link rel="stylesheet" type="text/css" href="bower_components/font-awesome/css/font-awesome.css"/>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/jQuery-contextMenu/src/jquery.contextMenu.js"></script>
<script src="bower_components/jQuery-contextMenu/src/jquery.ui.position.js"></script>
<!--Moved before require-js, otherwise it crashes -->
<script src='Code/ext/spectrum.js'/>
<script src="bower_components/FileSaver/FileSaver.min.js"></script>
<script src="bower_components/requirejs/require.js"></script>
<script type="text/javascript">
//setup require-js
require.config({
baseUrl: "./bower_components",
shim: {
// Libraries
lodash: {
exports: '_'
}
},
packages: [
{
name: 'dcl',
location: './dcl' //points to bower_components/dcl
},
{
name: 'wcDocker',
location: '../Code'
},
{
name: 'lodash',
location: './lodash-compat' //points to bower_components/dcl
}
]
});
</script>
<script type="text/javascript">
//setup demo module
require.config({
config: {
'wcDocker/demo/demoAMD':{
// enable/disable theme builder
themeBuilder: location.href.indexOf('noThemeBuilder') == -1,
// enable/disable tutorials
tutorials: location.href.indexOf('noTutorials') == -1
}
}
});
try {
//require demo
require([
"wcDocker/demo/demoAMD"
], function () {
});
}catch(e){
console.error('error loading demo ' + e , e);
console.dir(e.stack);
}
</script>
<link rel="stylesheet" type="text/css" href="Code/style.css"/>
<!-- Demo specific files -->
<link rel='stylesheet' href='Code/ext/spectrum.css'/>
</head>
<body style="background-color:white;">
<div class="dockerContainer" style="position:absolute;left:0;right:0;top:0;bottom:0;border:3px solid black"></div>
</body>
</html>