Fix syntax error for the savepos route definition

This commit is contained in:
Paul van Tilburg 2012-01-11 15:18:58 +01:00
parent 83228cbc3c
commit 700a1f49c7

View file

@ -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.
});