mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-02 17:33:37 +00:00
Merge branch 'hotfix/0.17.8'
This commit is contained in:
commit
1ef7700b51
2 changed files with 8 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue