mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-02 17:33:37 +00:00
Merge branch 'master' into develop
This commit is contained in:
commit
03fa11aac6
2 changed files with 7 additions and 1 deletions
|
@ -31,6 +31,11 @@
|
||||||
* Change remove deprecated files
|
* Change remove deprecated files
|
||||||
|
|
||||||
|
|
||||||
|
### 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)
|
### 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
|
||||||
|
|
|
@ -395,8 +395,9 @@ $(document).ready(function () {
|
||||||
|
|
||||||
$('#search-results').on('click', '.stepone-result-radio', updateSampleText);
|
$('#search-results').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