diff --git a/js/iD/ui/StepPane.js b/js/iD/ui/StepPane.js index fbf5a9ab4..77ed2e3c7 100644 --- a/js/iD/ui/StepPane.js +++ b/js/iD/ui/StepPane.js @@ -87,12 +87,15 @@ declare("iD.ui.StepPane", null, { show:function() { // summary: Show the window. - dijit.byId(this.divname).show(); + if(dijit.byId(this.divname).domNode.style.visibility == 'hidden') + dijit.byId(this.divname).show(); + + console.log(dijit.byId(this.divname)); }, hide:function() { // summary: Hide the window. dijit.byId(this.divname).hide(); - }, + } });