Syntax consistency fix

This commit is contained in:
Paul van Tilburg 2012-01-15 16:16:41 +01:00
parent ae7325b54a
commit f90fc3a28d
1 changed files with 3 additions and 3 deletions

6
db.js
View File

@ -1,6 +1,6 @@
var fs = require("fs"),
path = require("path"),
db_file = "./draggables.json";
var fs = require("fs")
, path = require("path")
, db_file = "./draggables.json";
// Saves the draggables info object to the database file (synchronously).
function save(obj) {