overte-Armored-Dragon/scripts/system/fingerPaint/html/eraserTab.html
Artur Gomes 9309f5137a Add tablet application to replicate the existing overlay interface that
uses qml.
Add last user picked colors using the custom color picker so that users can easily reuse that color.
2017-08-16 18:25:02 +01:00

17 lines
No EOL
448 B
HTML

<!--Note: change the parent postmessage second parameter due to possible security issues-->
<style type="text/css">
#undoButton {
width: 200px;
height: 200px;
}
</style>
<button id="undoButton" onclick="undo()">Undo</button>
<script type="text/javascript">
function undo() {
var undoEvent = {
"type" : "undo"
};
parent.postMessage(JSON.stringify(undoEvent), "*");
}
</script>