diff --git a/CHANGES.md b/CHANGES.md index a31a8df..13a66f2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,9 @@ -### 0.18.0 (2018-11-26 19:30:00 UTC) +### 0.18.1 (2018-11-28 15:35:00 UTC) + +* Fix manual search button on Daily Schedule + + +### 0.18.0 (2018-11-26 19:30:00 UTC) * Update Beautiful Soup 4.6.0 (r449) to 4.6.3 (r475) * Update CacheControl library 0.12.4 (bd94f7e) to 0.12.5 (cd91309) diff --git a/gui/slick/interfaces/default/episodeView.tmpl b/gui/slick/interfaces/default/episodeView.tmpl index 1e9468c..ef6c0dd 100644 --- a/gui/slick/interfaces/default/episodeView.tmpl +++ b/gui/slick/interfaces/default/episodeView.tmpl @@ -177,9 +177,9 @@ .asc{border-top:0; border-bottom:8px solid} .desc{border-top:8px solid; border-bottom:0} #end if -.bfr{position:absolute;left:-999px;top:-999px}.bfr img,img.spinner,img.queued,img.search{display:inline-block;width:16px;height:16px}img.spinner{background:url(${sbRoot}/images/loading16${theme_suffix}.gif) no-repeat 0 0}img.queued{background:url(${sbRoot}/images/queued.png) no-repeat 0 0}img.search{background:url(${sbRoot}/images/search16.png) no-repeat 0 0} +.bfr{position:absolute;left:-999px;top:-999px}.bfr img,img.spinner,.spinner2,img.queued,img.search{display:inline-block;width:16px;height:16px}img.spinner{background:url(${sbRoot}/images/loading16${theme_suffix}.gif) no-repeat 0 0}.spinner2{background:url(${sbRoot}/images/loading16-red.gif) no-repeat 0 0;margin-top:3px !important}img.queued{background:url(${sbRoot}/images/queued.png) no-repeat 0 0}img.search{background:url(${sbRoot}/images/search16.png) no-repeat 0 0} -
+
#if $show_message
diff --git a/gui/slick/js/ajaxEpSearch.js b/gui/slick/js/ajaxEpSearch.js index 00a920d..6b8d656 100644 --- a/gui/slick/js/ajaxEpSearch.js +++ b/gui/slick/js/ajaxEpSearch.js @@ -214,7 +214,7 @@ function rowRestore() { var link$ = $(this), img$ = link$.find('img'), img = ['Failed', uiOptions.imgNo], imgCls; // backup ui vars - if (link$.closest('.col-search') && link$.closest('.col-search').siblings('.col-status')) { + if (!!link$.closest('.col-search').length && link$.closest('.col-search').siblings('.col-status')) { link$.attr('data-rowclass', getAttr(link$.closest('tr'), 'class')); link$.attr('data-status', link$.closest('.col-search').siblings('.col-status').html().trim()); }