From 74942878eb6641fcdb0cd2edc266d2aff4149d5c Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Wed, 10 Feb 2016 21:46:31 -0500 Subject: [PATCH] remove debug messages --- pd/nw/dialog_iemgui.html | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/pd/nw/dialog_iemgui.html b/pd/nw/dialog_iemgui.html index 0fe291f3b..bfdd11250 100644 --- a/pd/nw/dialog_iemgui.html +++ b/pd/nw/dialog_iemgui.html @@ -364,9 +364,6 @@ function update_attr(elem) { } else if (elem.type === "select-one") { new_attrs[elem.name] = elem.selectedIndex; } else if (elem.type === "color") { -pdgui.post("elem.vlaue.sliceis " + elem.value.slice(1)); -pdgui.post("elem.vlaue.sliceis.parseint " + parseInt(elem.value.slice(1)), 16); - new_attrs[elem.name] = parseInt(elem.value.slice(1), 16) } else { new_attrs[elem.name] = elem.value; @@ -415,16 +412,11 @@ pdgui.post("label is " + attrs["label"]); var height, width; var size = attrs["size"]; -pdgui.post("size is " + attrs["size"]); if (!size) { -pdgui.post("looked for selection size"); -pdgui.post("ssize is " + attrs["selection-size"]); size = attrs["selection-size"]; } -pdgui.post("almost final size is " + size); if (size) { -pdgui.post("checking final size"); width = size; height = size; } else { @@ -432,8 +424,6 @@ pdgui.post("checking final size"); height = attrs["height"]; } -pdgui.post("width = " + attrs["width"]); -pdgui.post("height = " + attrs["height"]); var slot3 = attrs["minimum-range"]; var slot4 = attrs["maximum-range"]; @@ -484,7 +474,6 @@ pdgui.post("height = " + attrs["height"]); var font_size = attrs["font-size"]; if (!font_size) { font_size = 0; } -pdgui.post("background-color is " + attrs["background-color"]); var foreground_color = attrs["foreground-color"]; var background_color = attrs["background-color"]; var label_color = attrs["label-color"]; -- GitLab