diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-02-17 12:06:55 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-02-17 12:06:55 +0100 |
commit | cfe8527a73a15b1ead465b0b04dee3199d12fe15 (patch) | |
tree | cdcb105686563241561120426c36e36bf829fa46 /src/sciteco.html | |
parent | 47e4180ba813ee43f4e25596ac04fac8e9c97124 (diff) | |
download | sciteco-cfe8527a73a15b1ead465b0b04dee3199d12fe15.tar.gz |
sciteco emscripten sample HTML: make sure canvas is hidden if used
Diffstat (limited to 'src/sciteco.html')
-rw-r--r-- | src/sciteco.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sciteco.html b/src/sciteco.html index 59139b9..86891a5 100644 --- a/src/sciteco.html +++ b/src/sciteco.html @@ -35,7 +35,7 @@ /* the canvas *must not* have any border or padding, or mouse coords will be wrong */ canvas.emscripten { border: 0px none; - visibility: hidden; + display: none; } </style> </head> |