Merge 1ac684b43f
into 09ba2ec913
This commit is contained in:
commit
8fcf0f7e42
2 changed files with 10 additions and 0 deletions
|
@ -441,4 +441,9 @@ form.search input {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.noresult {
|
||||||
|
padding : 10px;
|
||||||
|
text-align : center;
|
||||||
}
|
}
|
|
@ -116,6 +116,11 @@ function(HostApp, Core, Paths, URI) {
|
||||||
_this.body.appendChild(new_node);
|
_this.body.appendChild(new_node);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
var noresult = document.createElement("p");
|
||||||
|
noresult.className = "noresult";
|
||||||
|
noresult.textContent = "No Results";
|
||||||
|
_this.body.appendChild(noresult);
|
||||||
}
|
}
|
||||||
|
|
||||||
}, null, false);
|
}, null, false);
|
||||||
|
|
Reference in a new issue