From 7c922e69f1e3607ea00976591fdc8cd1f30d7640 Mon Sep 17 00:00:00 2001 From: cjt Date: Sat, 4 Feb 2012 10:50:11 -0500 Subject: [PATCH] schematic tool formatting issues --- js/schematic.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/schematic.js b/js/schematic.js index af694040c6..29b935eaf8 100644 --- a/js/schematic.js +++ b/js/schematic.js @@ -1339,6 +1339,7 @@ schematic = (function() { ok_button.appendChild(document.createTextNode('OK')); ok_button.dialog = dialog; // for the handler to use ok_button.addEventListener('click',dialog_okay,false); + ok_button.style.display = 'inline'; ok_button.style.border = '1px solid'; ok_button.style.padding = '5px'; ok_button.style.margin = '10px'; @@ -1348,6 +1349,7 @@ schematic = (function() { cancel_button.appendChild(document.createTextNode('Cancel')); cancel_button.dialog = dialog; // for the handler to use cancel_button.addEventListener('click',dialog_cancel,false); + cancel_button.style.display = 'inline'; cancel_button.style.border = '1px solid'; cancel_button.style.padding = '5px'; cancel_button.style.margin = '10px';