From 700a1f49c70c0a3f4d038f46a8821eeac680e31c Mon Sep 17 00:00:00 2001 From: Paul van Tilburg Date: Wed, 11 Jan 2012 15:18:58 +0100 Subject: [PATCH] Fix syntax error for the savepos route definition --- plemp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plemp.js b/plemp.js index 5008ce0..2dedd71 100644 --- a/plemp.js +++ b/plemp.js @@ -39,7 +39,7 @@ app.get('/current', function(req, res) { // The position save route: access through AJAX request by the main page // for committing position changes of the draggables to the database, i.e. the // global state. -app.get('/savepos/:id/:x-pos/:y-pos', function(req, res)) { +app.get('/savepos/:id/:x-pos/:y-pos', function(req, res) { // Set the position for the file with the given ID. });