Commit b457bc6f by Valera Rozuvan Committed by Alexander Kryklia

Fixed input bug. Now if they are nested within DIVs, they are also included.

parent ed20fe34
...@@ -11,7 +11,7 @@ define('Inputs', ['logme'], function (logme) { ...@@ -11,7 +11,7 @@ define('Inputs', ['logme'], function (logme) {
allParamNames = state.getAllParameterNames(); allParamNames = state.getAllParameterNames();
for (c1 = 0; c1 < allParamNames.length; c1 += 1) { for (c1 = 0; c1 < allParamNames.length; c1 += 1) {
$('#' + gstId).children('.' + gstClass + '_input').each(function (index, value) { $('#' + gstId).find('.' + gstClass + '_input').each(function (index, value) {
var inputDiv, paramName; var inputDiv, paramName;
paramName = allParamNames[c1]; paramName = allParamNames[c1];
......
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