close button hides add show box.

This commit is contained in:
Naomi 2011-02-09 19:08:27 -05:00
parent 8d311a7cc3
commit 2c66c1801e
2 changed files with 35 additions and 27 deletions

View file

@ -116,6 +116,15 @@ function setAddShowEvents() {
}
});
$("#add-show-close")
.button()
.click(function(event){
event.stopPropagation();
event.preventDefault();
$("#add-show-form").hide();
});
$("#add-show-submit")
.button()
.click(function(){