Merge branch 'hotfix/0.17.8'

This commit is contained in:
JackDandy 2018-10-02 13:16:28 +01:00
commit 1ef7700b51
2 changed files with 8 additions and 2 deletions

View file

@ -1,4 +1,9 @@
### 0.17.7 (2018-09-26 18:30:00 UTC) ### 0.17.8 (2018-10-02 13:15:00 UTC)
* Fix executing addshow form prematurely
### 0.17.7 (2018-09-26 18:30:00 UTC)
* Fix conflicting chars search with RarBG torrent provider * Fix conflicting chars search with RarBG torrent provider
* Change improve Zooqle search * Change improve Zooqle search

View file

@ -364,8 +364,9 @@ $(document).ready(function () {
$('#searchResults').on('click', '.stepone-result-radio', updateSampleText); $('#searchResults').on('click', '.stepone-result-radio', updateSampleText);
elNameToSearch.keyup(function (event) { elNameToSearch.keydown(function (event) {
if (event.keyCode == 13) { if (event.keyCode == 13) {
event.preventDefault();
elSearchName.click(); elSearchName.click();
} }
}); });