diff --git a/examples/clog-demo/clog-assets/demos/01-demo.lisp b/examples/clog-demo/clog-assets/demos/01-demo.lisp index 7735ba8..e0381d0 100644 --- a/examples/clog-demo/clog-assets/demos/01-demo.lisp +++ b/examples/clog-demo/clog-assets/demos/01-demo.lisp @@ -133,7 +133,6 @@ (defun on-click (obj) (let ((app (connection-data-item obj "app-data")) (btn-txt (text obj))) - ;; LQML note: ignore whitespace (see hack in 'boot.js') (cond ((search "<--" btn-txt) (setf (snake-direction app) :left)) ((search "-->" btn-txt) (setf (snake-direction app) :right)) ((search "-^-" btn-txt) (setf (snake-direction app) :up)) diff --git a/examples/clog-demo/clog-assets/static-files/js/boot.js b/examples/clog-demo/clog-assets/static-files/js/boot.js index f48652b..98a44b6 100644 --- a/examples/clog-demo/clog-assets/static-files/js/boot.js +++ b/examples/clog-demo/clog-assets/static-files/js/boot.js @@ -112,7 +112,7 @@ function Open_ws() { console.log ('connection successful'); Setup_ws(); } - pingerid = setInterval (function () {Pingws ();}, 10000); + pingerid = setInterval (function () {Ping_ws ();}, 10000); } else { document.writeln ('If you are seeing this your browser or your connection to the internet is blocking websockets.'); } diff --git a/examples/clog-demo/platforms/android/AndroidManifest.xml b/examples/clog-demo/platforms/android/AndroidManifest.xml index a0cf3c6..2cb6fc1 100644 --- a/examples/clog-demo/platforms/android/AndroidManifest.xml +++ b/examples/clog-demo/platforms/android/AndroidManifest.xml @@ -5,7 +5,6 @@ -