1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 15:47:00 +02:00

  is not needed with border-collapse

This commit is contained in:
Jakub Vrana
2018-02-20 16:02:25 +01:00
parent 7cb3e768bb
commit 2021ea8fd7
21 changed files with 42 additions and 52 deletions

View File

@@ -319,13 +319,13 @@ function checkboxClick(event) {
/** Set HTML code of an element
* @param string
* @param string undefined to set parentNode to  
* @param string undefined to set parentNode to empty string
*/
function setHtml(id, html) {
var el = qs('#' + id);
if (el) {
if (html == null) {
el.parentNode.innerHTML = ' ';
el.parentNode.innerHTML = '';
} else {
el.innerHTML = html;
}
@@ -716,7 +716,7 @@ function selectClick(event, text, warning) {
});
input.rows = rows;
}
if (value == '\u00A0' || qsa('i', td).length) { //   or i - NULL
if (qsa('i', td).length) { // <i> - NULL
value = '';
}
if (document.selection) {