This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
</head> | |
<body onload="document.getElementById('content').focus();"> | |
<div id="content" contenteditable="true"> | |
<h1>Example Heading</h1> | |
<p>Example paragraph.</p> | |
<img class="drawio" style="cursor:default;" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAgoAAAGKCAYAAABtmWkQAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEwAACxMBAJqcGAAABUp6VFh0bXhHcmFwaE1vZGVsAADtWl2T2jYU/TU8MelYkj8fwwaSh3SaKe00edTaWuxGWIwsFsivr2TJRraxMQts28zCzI51faUr3XN0dexlgh7W+48cb9JfWULoNNlP0IcJhF6E5N9pctBNACKg2iueJdriVM1l9oMYJ23bZgkpjEUZBGNUZBvbFLM8J7GwLE+MJlZzg1ek1VzGmLZtf2WJSLUthH5l/USyVVoNDvxI2QtxqHon5AlvqXhXmqC6ucbVKGoFEzSfoAfOmNBXfxaE//b4t5zvlOJHQrWn6ofzTHbNWK5NO5yJKXDkGHIqaI8naFakbDeFQK4PJ6RrB217NYRzxqb7QzTKDXTcvFNe7nWTAX7X5PWsOxg3YjhmRsY3GrNGeG3CR7rBcW5DGYdTe6dpJq73D4TSCVzoprw4ctP2qLuajcJJLqyxqv4tZ4jKsM+Ybs1O+SJ3bmvzFLtsTXEuW7NUrNVeAPIyTjOafMYHtlVxCoHj71VrljKe/WC5wMrZUYsXmAtTNRBseCxVz8otxQnb1X04+04eGGW8nAeald/6TlUI1GSeMkotzw/uHCw8aV9xnGQyE9W9nJXLWFFcFCbMEzvell1DR32NfWmSoEJUWVg0Qy28RbhYqHwwSvGmyB7LHmqEMrOEC7LvQQZYKH8kbE0EP0yNs1 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript"> | |
function editDiagram(image) | |
{ | |
var initial = image.getAttribute('src'); | |
image.setAttribute('src', 'http://www.draw.io/images/ajax-loader.gif'); | |
var iframe = document.createElement('iframe'); | |
iframe.setAttribute('frameborder', '0'); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<shape aspect="variable" h="211" w="200" strokewidth="inherit"> | |
<connections> | |
<constraint x="0.5" y="0" perimeter="0" name="N"/> | |
<constraint x="0.5" y="1" perimeter="0" name="S"/> | |
<constraint x="0" y="0.5" perimeter="0" name="W"/> | |
<constraint x="1" y="0.5" perimeter="0" name="E"/> | |
<constraint x="0" y="0" perimeter="0" name="NW"/> | |
<constraint x="1" y="0" perimeter="0" name="NE"/> | |
<constraint x="1" y="1" perimeter="0" name="SE"/> | |
<constraint x="0" y="1" perimeter="0" name="SW"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript"> | |
function edit(xml, callback) | |
{ | |
var editWindow = window.open('https://www.draw.io/?embed=1&ui=atlas'); | |
var receive = function(evt) | |
{ | |
if (evt.origin == 'https://www.draw.io') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var clipboardKey = '.drawio-clipboard'; | |
mxClipboard.isEmpty = function() | |
{ | |
return localStorage.getItem(clipboardKey) == null; | |
}; | |
mxClipboard.setCells = function(cells) | |
{ | |
var codec = new mxCodec(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript"> | |
var DRAW_IFRAME_URL = 'https://www.draw.io/?gapi=0&db=0&embed=1'; | |
var dav= ''; | |
function edit(filename) | |
{ | |
var req = new XMLHttpRequest(); | |
req.withCredentials = true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript"> | |
mxBasePath = '../src'; | |
</script> | |
<script type="text/javascript" src="../src/js/mxClient.js"></script> | |
<script type="text/javascript"> | |
function main(container) | |
{ | |
// Checks if the browser is supported |