view index.html @ 189:283b2b657574

Move note about v1.8.2018 from notes to "existing problems", as it is more related to problems.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 23 Aug 2018 16:35:17 +0300
parents 8a9a9fcc02f7
children d67a79d6e11c
line wrap: on
line source

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Multipaint.JS</title>
  <script src="processing.js"></script>
  <script src="mpui.js"></script>
</head>
<body>
<canvas id="mpCanvas"></canvas>
<div id="mpUI"></div>
<div id="mpNote"></div>
<script>

function mpRunSketch(canvas)
{
  Processing.loadSketchFromSources(canvas, mpSources);
}

mpStart();

</script>
</body>
</html>