Style fixed.

This commit is contained in:
Mattias Põldaru 2011-12-21 10:15:07 +02:00
parent 72521be196
commit 5f9f87e8fa
1 changed files with 6 additions and 2 deletions

View File

@ -296,8 +296,12 @@ $("#controller-top-unblank, #controller-btm-unblank").live("click", OpenLP.unbla
$("#alert-submit").live("click", OpenLP.showAlert);
// Search
$("#search-submit").live("click", OpenLP.search);
$("#search-text").live("keypress", function(event){
if (event.which == 13) { OpenLP.search(event); }});
$("#search-text").live("keypress", function(event) {
if (event.which == 13)
{
OpenLP.search(event);
}
});
$("#go-live").live("click", OpenLP.goLive);
$("#add-to-service").live("click", OpenLP.addToService);
// Poll the server twice a second to get any updates.