2014-03-11 15:24:31 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>bpmn-js demo</title>
|
2014-03-13 19:21:42 +00:00
|
|
|
|
2014-04-05 09:25:34 +00:00
|
|
|
<link rel="stylesheet" href="css/app.css" />
|
|
|
|
<link rel="stylesheet" href="css/diagram-js.css" />
|
2014-03-11 15:24:31 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2014-03-18 16:01:24 +00:00
|
|
|
<div class="content" id="js-drop-zone">
|
2014-03-13 19:21:42 +00:00
|
|
|
|
2014-03-21 20:10:01 +00:00
|
|
|
<div class="message intro">
|
2014-03-18 16:01:24 +00:00
|
|
|
<div class="note">
|
2014-04-03 17:26:00 +00:00
|
|
|
Drop BPMN diagram from your desktop or <a id="js-create-diagram" href>create a new diagram</a> to get started.
|
2014-03-18 16:01:24 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-03-11 15:24:31 +00:00
|
|
|
|
2014-03-21 20:10:01 +00:00
|
|
|
<div class="message error">
|
|
|
|
<div class="note">
|
|
|
|
<p>Ooops, we could not display the BPMN 2.0 diagram.</p>
|
|
|
|
|
|
|
|
<div class="details">
|
|
|
|
<span>cause of the problem</span>
|
|
|
|
<pre></pre>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2014-03-25 13:08:11 +00:00
|
|
|
<div class="canvas" id="js-canvas"></div>
|
2014-03-18 16:01:24 +00:00
|
|
|
</div>
|
2014-03-11 15:24:31 +00:00
|
|
|
|
2014-03-25 13:08:11 +00:00
|
|
|
<ul class="buttons">
|
|
|
|
<li>
|
2014-03-26 16:46:02 +00:00
|
|
|
<a id="js-download-diagram" href title="download BPMN diagram">
|
2014-04-05 09:25:34 +00:00
|
|
|
<span class="icon-download"></span>
|
2014-03-25 13:08:11 +00:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
2014-03-26 16:46:02 +00:00
|
|
|
<a id="js-download-svg" href title="download as SVG image">
|
2014-04-05 09:25:34 +00:00
|
|
|
<span class="icon-picture"></span>
|
2014-03-25 13:08:11 +00:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2014-03-11 15:24:31 +00:00
|
|
|
|
2014-03-31 13:55:25 +00:00
|
|
|
<script>
|
|
|
|
var str = window.location.search;
|
|
|
|
var min = !/\?debug=/.test(str);
|
|
|
|
|
|
|
|
document.write('<script src="../bpmn' + (min ? '.min': '') + '.js"></' + 'script>');
|
|
|
|
</script>
|
2014-03-25 13:08:11 +00:00
|
|
|
|
|
|
|
<script>
|
|
|
|
var BpmnJS = require('bpmn/Modeler');
|
|
|
|
</script>
|
|
|
|
|
2014-03-18 16:01:24 +00:00
|
|
|
<script src="app.js"></script>
|
2014-03-11 15:24:31 +00:00
|
|
|
</html>
|