Skip to content

Commit

Permalink
Bump 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ecarriou committed Jul 4, 2018
1 parent ae4cd32 commit 22548dd
Show file tree
Hide file tree
Showing 25 changed files with 1,005 additions and 48 deletions.
2 changes: 1 addition & 1 deletion designer/app/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">

<head>
<title>Loading...</title>
Expand Down
2 changes: 1 addition & 1 deletion designer/behavior.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">

<head>
<meta charset="utf-8">
Expand Down
2 changes: 1 addition & 1 deletion designer/component.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">

<head>
<meta charset="utf-8">
Expand Down
55 changes: 55 additions & 0 deletions designer/diagram.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="An IDE for designing systems">
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport'/>
<title>class diagram · system </title>
<!-- bootstrap -->
<link href="lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- editor styles -->
<link href="styles/diagram.css" rel="stylesheet">
</head>

<body>
<!-- menubar -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- menu header -->
<div id="designer-menubar-header" class="navbar-header"></div>
<div>
<!-- menu items -->
<ul id="designer-menubar-items" class="nav navbar-nav"></ul>
<!-- Mmnu actions -->
<ul id="designer-menubar-actions" class="nav navbar-nav navbar-right hidden-xs"></ul>
</div>
</div>
</nav>
<div class="container">
<div class="container-fluid">
<div class="row">
<!-- toolbar -->
<div class="col-sm-3 col-md-2 sidebar">
<!-- toolbar items -->
<ul id="designer-toolbar-items" class="nav nav-sidebar"></ul>
</div>
</div>
</div>
<!-- dialog -->
<div id="designer-dialog"></div>
<!-- message -->
<div id="designer-message"></div>
<!-- diagram -->
<div id="designer-diagram"></div>
</div>
<!-- lib -->
<script>if (typeof module === "object") { window.module = module; module = undefined; }</script>
<script src="lib/diagram/vendor.js"></script>
<script>if (window.module) module = window.module;</script>
<!-- designer -->
<script type="text/javascript" src="scripts/diagram.js"></script>
</body>

</html>
2 changes: 1 addition & 1 deletion designer/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">

<head>
<meta charset="utf-8">
Expand Down
56 changes: 30 additions & 26 deletions designer/lib/designer/vendor.js

Large diffs are not rendered by default.

Loading

0 comments on commit 22548dd

Please sign in to comment.