-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
97 lines (77 loc) · 3.23 KB
/
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
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
96
97
<!DOCTYPE html>
<html ng-app='app'>
<head>
<meta charset="UTF-8">
<title>Welcome to electron Mail mass application!</title>
<link rel="stylesheet" href="./node_modules/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="./node_modules/angular-material/angular-material.min.css">
<link rel="stylesheet" href="./node_modules/angular-material-icons/angular-material-icons.css">
<link rel="stylesheet" href="./css.css">
<link rel="stylesheet" href="./linux-window.css">
<link rel="stylesheet" href="./directives/entity-table/entity-table.css">
<link rel="stylesheet" href="./directives/entity-column/entity-column.css">
<link rel="stylesheet" href="./node_modules/js-editable.jquery/dist/js-editable.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu:300,300i,400,700,700i">
<style>
body {
-webkit-app-region: drag;
}
.no-drag-window {
-webkit-app-region: no-drag;
}
</style>
</head>
<body ng-controller="designerControll">
<div class="gnome-top-bar">
<button class="activities-button fa fa-linux"></button>
<ul class="menu-bar">
<li class="menu-bar-item">File</li>
<li class="menu-bar-item">Edit</li>
<li class="menu-bar-item">Select</li>
<li class="menu-bar-item">View</li>
<li class="menu-bar-item">Image</li>
<li class="menu-bar-item">Layer</li>
<li class="menu-bar-item">Colors</li>
<li class="menu-bar-item">Tools</li>
<li class="menu-bar-item">Filters</li>
<li class="menu-bar-item">Windows</li>
<li class="menu-bar-item">Help</li>
</ul>
</div>
<div style="min-width: 100%; min-height:100%" >
<entity-table ng-repeat="e in data.entities" table="e" ></entity-table>
<input type="text" id="column-input-name" style="z-index: 1000">
</div>
<!--http://www.lively-kernel.org/repository/webwerkstatt/users/tmohr/libs/jsPlumb/demo/jquery/dynamicAnchorsDemo.html
http://codepen.io/yurigor/pen/vXYomB-->
</body>
<script>
window.$ = window.jQuery = require('jquery');
</script>
<script src="./node_modules/js-editable.jquery/js-editable-jquery.js"></script>
<script>
require('jsPlumb');
var __plumbInst = jsPlumb.getInstance();
var plumbDef = __plumbInst.importDefaults({
Connector: ["Flowchart"],
Anchors: "AutoDefault"
});
//jsPlumb.draggable(jsPlumb.getSelector("#sampleDiv"));
// __plumbInst.connect({
// source: "Employee",
// target: "Position",
// scope: "someScope",
// anchor: "AutoDefault"
// });
// __plumbInst.connect({
// source: "Employee",
// target: "Employee",
// scope: "someScope",
// connector: "Bezier",
// anchor: "AutoDefault"
// });
// You can also require other files to run in this process
require('./index.renderer');
</script>
</html>