js: Allow for putting a resize handle in HTML

This commit is contained in:
Ben Harris
2022-11-29 23:34:43 +00:00
parent 1611a5e058
commit dbb2d2adb2

View File

@ -572,8 +572,12 @@ function initPuzzle() {
resizable_div = document.getElementById("resizable");
if (resizable_div !== null) {
// Delete any existing resize handle.
var resize_handle = document.getElementById("resizehandle");
if (resize_handle)
resize_handle.parentNode.removeChild(resize_handle);
// Create the resize handle.
var resize_handle = document.createElement("canvas");
resize_handle = document.createElement("canvas");
resize_handle.width = 10;
resize_handle.height = 10;