menu slide/Up Down working, other clean up

This commit is contained in:
Jason White
2015-06-05 12:57:13 -04:00
parent 5e47459962
commit b6ed151e1d
3 changed files with 41 additions and 199 deletions

View File

@ -198,9 +198,9 @@ public abstract class Screen {
// hook all the links
public String getContent() {
String makeAllAjax = "<script>goat.utils.makeFormsAjax();goat.utils.ajaxifyAttackHref();</script>";
//String makeAllAjax = "<script>goat.utils.makeFormsAjax();goat.utils.ajaxifyAttackHref();</script>";
// need to do this here as some of the lessons render forms after submission of an ajax form
return (content == null) ? "" : content.toString() + makeAllAjax;
return (content == null) ? "" : content.toString();// + makeAllAjax;
}
/**