s/buttton/button/g, per Anthony DeBarros. Fixes #1518

This commit is contained in:
Dave Page
2016-08-01 15:16:14 +01:00
parent 9c4eed70b4
commit 16304aafd2
5 changed files with 6 additions and 6 deletions

View File

@@ -971,7 +971,7 @@
gridHeader = _.template([
'<div class="subnode-header">',
' <label class="control-label pg-el-sm-10"><%-label%></label>',
' <button class="btn-sm btn-default add fa fa-plus" <%=canAdd ? "" : "disabled=\'disabled\'"%>><%-add_label%></buttton>',
' <button class="btn-sm btn-default add fa fa-plus" <%=canAdd ? "" : "disabled=\'disabled\'"%>><%-add_label%></button>',
'</div>'].join("\n")),
gridBody = $('<div class="pgadmin-control-group backgrid form-group pg-el-xs-12 object subnode"></div>').append(
gridHeader(data)
@@ -1209,7 +1209,7 @@
var self = this,
gridHeader = ["<div class='subnode-header'>",
" <label class='control-label pg-el-sm-10'>" + data.label + "</label>" ,
" <button class='btn-sm btn-default add fa fa-plus'></buttton>",
" <button class='btn-sm btn-default add fa fa-plus'></button>",
"</div>"].join("\n");
gridBody = $("<div class='pgadmin-control-group backgrid form-group pg-el-xs-12 object subnode'></div>").append(gridHeader);