mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 17:00:13 +02:00
remove a missed console log
This commit is contained in:
parent
31df339565
commit
e40aff4864
1 changed files with 0 additions and 2 deletions
|
@ -283,8 +283,6 @@ function makeTable(setting, setting_name, setting_value) {
|
||||||
// for arrays we add a hidden input to this td so that values can be posted appropriately
|
// for arrays we add a hidden input to this td so that values can be posted appropriately
|
||||||
html += "<input type='hidden' name='" + setting_name + "[" + indexOrName + "]"
|
html += "<input type='hidden' name='" + setting_name + "[" + indexOrName + "]"
|
||||||
+ (rowIsObject ? "." + col.name : "") + "' value='" + colValue + "'/>"
|
+ (rowIsObject ? "." + col.name : "") + "' value='" + colValue + "'/>"
|
||||||
|
|
||||||
console.log(html)
|
|
||||||
} else if (row.hasOwnProperty(col.name)) {
|
} else if (row.hasOwnProperty(col.name)) {
|
||||||
html += row[col.name]
|
html += row[col.name]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue