diff options
Diffstat (limited to '')
-rw-r--r-- | client/mapeditor.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/mapeditor.html b/client/mapeditor.html index 5df8c38..6fbb158 100644 --- a/client/mapeditor.html +++ b/client/mapeditor.html @@ -15,10 +15,16 @@ <input type="text" id="height" name="height" placeholder="Map Height"> <input type="submit" value="Create"/> </form> + <div id="popup" style="display: none"> + <input type="button" id="close" value="x" onclick="document.getElementById('popup').style.display = 'none'"> + <textarea id="textarea" disabled='true'></textarea> + <input type="button" id="copy" value="Copy to clipboard"> + </div> </div> <div id="sidebar" style="display: none;"> <p>W: Place Wall</p> <p>G: Place Ghost Wall</p> + <p>H: Place Ghost Spawn</p> <p>F: Place Food</p> <p>1: Place Pac Spawn 1</p> <p>2: Place Pac Spawn 2</p> |