Skip to content

Commit

Permalink
fix #274
Browse files Browse the repository at this point in the history
  • Loading branch information
Bosn committed Dec 15, 2015
1 parent 4b7a43c commit 4f51c69
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ target
build
.idea
*.iml
.DS_Store
Binary file removed WebContent/.DS_Store
Binary file not shown.
Binary file removed WebContent/WEB-INF/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion WebContent/tester/pageTester.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ YUI().use('handlebars', 'node', 'event', 'jsonp', 'jsonp-url', 'json-stringify',
success : function() {
var args = [];
try {
args = [JSON.parse(arguments[1].responseText)];
args = [eval('(' + arguments[1].responseText + ')')];
} catch (ex) {
log(color('error occurred!', RED) + color(', detail:' + ex.message, LIGHT_GRAY));
}
Expand Down

0 comments on commit 4f51c69

Please sign in to comment.