Browse Source

Merge branch 'hotfix/0.17.8'

tags/release_0.17.8^0 release_0.17.8
JackDandy 7 years ago
parent
commit
1ef7700b51
  1. 7
      CHANGES.md
  2. 3
      gui/slick/js/newShow.js

7
CHANGES.md

@ -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
* Change improve Zooqle search

3
gui/slick/js/newShow.js

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

Loading…
Cancel
Save