Fixed placeholder

This commit is contained in:
Atlante45 2014-10-09 12:39:00 -07:00
parent 72e4785db2
commit 06007863d2

View file

@ -289,7 +289,7 @@ function makeTableInputs(setting) {
_.each(setting.columns, function(col) {
html += "<td class='row-data'name='" + col.name + "'>\
<input type='text' class='form-control' placeholder='" + (col.key ? col.key : "") + "' value=''>\
<input type='text' class='form-control' placeholder='" + (col.placeholder ? col.placeholder : "") + "' value=''>\
</td>"
})