Commit 4fb5f791 authored by Jérome Perrin's avatar Jérome Perrin

Input_viewSpreadsheet: fix jslint unused arguments

parent 33deea77
...@@ -91,9 +91,9 @@ ...@@ -91,9 +91,9 @@
]); ]);
}) })
.push(function (result_list) { .push(function (result_list) {
var i, content, var content,
result = JSON.parse(result_list[0]), result = JSON.parse(result_list[0]);
config = result.application_configuration.input;
// if there are previously stored data in input for this sprSheet // if there are previously stored data in input for this sprSheet
if (result.input[gadget.props.name]) { if (result.input[gadget.props.name]) {
content = result.input[gadget.props.name]; content = result.input[gadget.props.name];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment