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

This commit is contained in:
Valera Rozuvan
2012-12-18 13:58:06 +02:00
committed by Alexander Kryklia
parent ed20fe3417
commit b457bc6f4a

View File

@@ -11,7 +11,7 @@ define('Inputs', ['logme'], function (logme) {
allParamNames = state.getAllParameterNames();
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;
paramName = allParamNames[c1];