Merge pull request #1 from rickogden/master

Fixed: Widget Expanding on Repeated Clicking
This commit is contained in:
Richard Fairhurst
2012-07-23 07:27:32 -07:00
+3 -2
View File
@@ -87,12 +87,13 @@ 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();
},
hide:function() {
// summary: Hide the window.
dijit.byId(this.divname).hide();
},
}
});