maxGraph/javascript/examples/editors/layouteditor.html

36 lines
958 B
HTML
Raw Normal View History

2012-05-21 20:32:26 +00:00
<html>
<head>
<title>mxGraph Workflow Designer</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css" media="screen">
div.base {
position: absolute;
overflow: hidden;
white-space: nowrap;
font-family: Arial;
font-size: 8pt;
}
div.base#graph {
border-style: solid;
border-color: #F2F2F2;
border-width: 1px;
background: url('images/grid.gif');
}
</style>
<script type="text/javascript">
mxBasePath = '../../src';
window.onbeforeunload = function() { return mxResources.get('changesLost'); };
</script>
<script type="text/javascript" src="../../src/js/mxClient.js"></script>
<script type="text/javascript" src="js/mxApplication.js"></script>
</head>
<body onload="new mxApplication('config/layouteditor.xml');">
<div id="graph" class="base">
<!-- Graph Here -->
</div>
<div id="status" class="base" align="right">
<!-- Status Here -->Done
</div>
</body>
</html>