Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
idelvall committed Mar 17, 2016
1 parent 12aead8 commit 912ada3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dist/js/brutusin-json-forms-bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,15 @@ if (("undefined" === typeof $ || "undefined" === typeof $.fn || "undefined" ===
table.setAttribute("style", "border:none;margin:0");
var tr = document.createElement("tr");
var td1 = document.createElement("td");
td1.setAttribute("style", "width:100%");
td1.setAttribute("style", "width:100%; padding:0;padding-right:4px");
table.appendChild(tr);
tr.appendChild(td1);
parent.removeChild(element);
td1.appendChild(element);
parent.appendChild(table);
var td = document.createElement("td");
tr.appendChild(td);
td.setAttribute("style", "padding:0");
var searchButton = document.createElement("button");
searchButton.className = "btn btn-default glyphicon " + glyphicon;
searchButton.onclick = function () {
Expand Down
2 changes: 1 addition & 1 deletion dist/js/brutusin-json-forms-bootstrap.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/js/brutusin-json-forms-bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,15 @@ if (("undefined" === typeof $ || "undefined" === typeof $.fn || "undefined" ===
table.setAttribute("style", "border:none;margin:0");
var tr = document.createElement("tr");
var td1 = document.createElement("td");
td1.setAttribute("style", "width:100%");
td1.setAttribute("style", "width:100%; padding:0;padding-right:4px");
table.appendChild(tr);
tr.appendChild(td1);
parent.removeChild(element);
td1.appendChild(element);
parent.appendChild(table);
var td = document.createElement("td");
tr.appendChild(td);
td.setAttribute("style", "padding:0");
var searchButton = document.createElement("button");
searchButton.className = "btn btn-default glyphicon " + glyphicon;
searchButton.onclick = function () {
Expand Down

0 comments on commit 912ada3

Please sign in to comment.