render lesson content using jquery

This commit is contained in:
lawson89
2014-08-18 13:18:42 -04:00
parent 30f3c3a95f
commit f3092a2344
5 changed files with 41 additions and 24 deletions

View File

@ -205,6 +205,8 @@ public abstract class Screen {
// TODO we could hook all forms here with javascript call to ajax forms plugin
public String getContent() {
String makeFormsAjax = "<script> $(document).ready(function() { makeFormsAjax(); });</script>";
// handle this on the page with js
makeFormsAjax = "";
return (content == null) ? "" : content.toString() + makeFormsAjax;
}

View File

@ -129,7 +129,7 @@ public class WebSession {
/**
* Description of the Field
*/
public final static String SESSION = "Session";
public final static String SESSION = "websession";
public final static String SHOWSOURCE = "ShowSource";