Merge pull request #223 from dblugeon/fix-221

Fix proposition for issue #221
This commit is contained in:
Jeena Paradies 2013-05-05 08:48:57 -07:00
commit ac1b1c685f
2 changed files with 10 additions and 0 deletions

View file

@ -441,4 +441,9 @@ form.search input {
width: 100%;
padding: 10px;
font-size: 1.2em;
}
p.noresult {
padding : 10px;
text-align : center;
}

View file

@ -116,6 +116,11 @@ function(HostApp, Core, Paths, URI) {
_this.body.appendChild(new_node);
}
}
} else {
var noresult = document.createElement("p");
noresult.className = "noresult";
noresult.textContent = "No Results";
_this.body.appendChild(noresult);
}
}, null, false);