Commit 5f10d972 authored by Boris Kocherov's avatar Boris Kocherov

remove not used selectors from icon's class

parent f785a2aa
...@@ -22,6 +22,17 @@ ...@@ -22,6 +22,17 @@
return typeof doc; return typeof doc;
} }
function createElement(type, props) {
var element = document.createElement(type),
key;
for (key in props) {
if (props.hasOwnProperty(key)) {
element.setAttribute(key, props[key]);
}
}
return element;
}
function getDocumentSchema(doc) { function getDocumentSchema(doc) {
var type = getDocumentType(doc), var type = getDocumentType(doc),
schema = { schema = {
...@@ -417,9 +428,7 @@ ...@@ -417,9 +428,7 @@
}) })
.push(function (ret) { .push(function (ret) {
var input = document.createElement("button"); var input = document.createElement("button");
input.setAttribute("class", input.setAttribute("class", "ui-btn-icon-notext ui-icon-plus");
"ui-shadow-inset ui-btn ui-btn-inline ui-corner-all" +
" ui-btn-icon-notext ui-icon-btn ui-icon-plus ui-input-btn");
input.type = "button"; input.type = "button";
input.title = title; input.title = title;
if (!ret) { if (!ret) {
...@@ -617,24 +626,21 @@ ...@@ -617,24 +626,21 @@
div.title = json_field.description; div.title = json_field.description;
// if (key && !first_path) { // if (key && !first_path) {
if (options.delete_button === true) { if (options.delete_button === true) {
delete_button = document.createElement("span"); delete_button = createElement("span",
delete_button.setAttribute("class", {"class": "ui-btn-icon-top ui-icon-trash-o"}
"ui-shadow-inset ui-btn ui-btn-inline ui-corner-all" + );
" ui-btn-icon-top ui-icon-btn ui-icon-trash-o");
gadget.props.delete_button = delete_button; gadget.props.delete_button = delete_button;
div.appendChild(delete_button); div.appendChild(delete_button);
} else if (options.top !== true) { } else if (options.top !== true) {
if (options.required) { if (options.required) {
delete_button = document.createElement("span"); delete_button = createElement("span",
delete_button.setAttribute("class", {"class": "ui-btn-icon-top ui-icon-circle"}
"ui-shadow-inset ui-btn ui-btn-inline ui-corner-all" + );
" ui-btn-icon-top ui-icon-btn ui-icon-circle");
div.appendChild(delete_button); div.appendChild(delete_button);
} else { } else {
delete_button = document.createElement("span"); delete_button = createElement("span");
delete_button.innerHTML = " "; delete_button.innerHTML = " ";
div.appendChild(delete_button); div.appendChild(delete_button);
} }
} }
if (false) { if (false) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment