openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #13524
Re: [Merge] lp:~mahfiaz/openlp/remote-search-with-enter into lp:openlp
Review: Needs Fixing
8 +$("#search-text").live("keypress", function(event){
9 + if (event.which == 13) { OpenLP.search(event); }});
Please format this like the rest of the code (or at least how I want our JS to be formatted):
$("#search-text").live("keypress", function (event) {
if (event.which == 13)
{
OpenLP.search(event);
}
});
--
https://code.launchpad.net/~mahfiaz/openlp/remote-search-with-enter/+merge/86465
Your team OpenLP Core is subscribed to branch lp:openlp.
References