From c7446a1784348f6ff4e117ea9b6296f5e3a8e137 Mon Sep 17 00:00:00 2001 From: Purple Fox Date: Fri, 27 Apr 2012 17:43:01 +0100 Subject: [PATCH] tweaks --- src/examples/groovy/webapp/App.groovy | 2 +- src/examples/javascript/webapp/app.js | 2 +- src/examples/ruby/webapp/app.rb | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/examples/groovy/webapp/App.groovy b/src/examples/groovy/webapp/App.groovy index 460fbc702fa..f4a782afddc 100644 --- a/src/examples/groovy/webapp/App.groovy +++ b/src/examples/groovy/webapp/App.groovy @@ -34,7 +34,7 @@ def webServerConf = [ bridge: true, // This defines which messages from the client we will let through - // from the client + // to the server side permitted: [ // Allow calls to get static album data from the persistor [ diff --git a/src/examples/javascript/webapp/app.js b/src/examples/javascript/webapp/app.js index 8e8ae0d0b5a..1b81ea01043 100644 --- a/src/examples/javascript/webapp/app.js +++ b/src/examples/javascript/webapp/app.js @@ -23,7 +23,7 @@ var webServerConf = { bridge: true, // This defines which messages from the client we will let through - // from the client + // to the server side permitted: [ // Allow calls to get static album data from the persistor { diff --git a/src/examples/ruby/webapp/app.rb b/src/examples/ruby/webapp/app.rb index 071aa3d1b62..744e7ff4744 100644 --- a/src/examples/ruby/webapp/app.rb +++ b/src/examples/ruby/webapp/app.rb @@ -18,7 +18,7 @@ 'bridge' => true, # This defines which messages from the client we will let through - # from the client + # to the server side 'permitted' => [ # Allow calls to get static album data from the persistor { @@ -38,7 +38,7 @@ } } ] -}; +} # Now we deploy the modules that we need