mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 02:23:57 +02:00
remove an extra console log
This commit is contained in:
parent
4cdfe87cf1
commit
c84aac9d2e
1 changed files with 0 additions and 3 deletions
|
@ -6,8 +6,6 @@ var viewHelpers = {
|
|||
getFormGroup: function(groupName, setting, values, isAdvanced, isLocked) {
|
||||
setting_id = groupName + "_" + setting.name
|
||||
|
||||
console.log(setting.name + " in " + groupName + " is " + isLocked)
|
||||
|
||||
form_group = "<div class='form-group" + (isAdvanced ? " advanced-setting" : "") + "'>"
|
||||
|
||||
if (_.has(values, groupName) && _.has(values[groupName], setting.name)) {
|
||||
|
@ -41,7 +39,6 @@ var viewHelpers = {
|
|||
form_group += "<span class='help-block'>" + setting.help + "</span>"
|
||||
}
|
||||
|
||||
|
||||
form_group += "</div>"
|
||||
return form_group
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue