Dedicated new enterprise form

This commit is contained in:
Rob Harrington
2014-12-19 12:57:56 +11:00
parent 24cf3dee74
commit a810fc88ac
6 changed files with 123 additions and 30 deletions

View File

@@ -28,3 +28,10 @@ show_flash_error = function(message) {
}
}
}
$(document).ready(function(){
$('a.close').click(function(event){
event.preventDefault();
$(this).parent().slideUp(250);
});
});