Update js/frameSheetModel.js

Small mistake in catch block
This commit is contained in:
Julian Descottes 2012-08-29 20:32:23 +03:00
parent 184f6bf825
commit 71c732665f
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ var FrameSheetModel = (function() {
try {
frames = JSON.parse(serialized);
} catch (e) {
throw "Could not load serialized framesheet." + e.message()
throw "Could not load serialized framesheet." + e.message
}
},