diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/bg/js/templates.js | 12 | ||||
-rw-r--r-- | ext/bg/search.html | 4 | ||||
-rw-r--r-- | ext/fg/css/frame.css | 2 | ||||
-rw-r--r-- | ext/fg/frame.html | 2 | ||||
-rw-r--r-- | ext/fg/js/frame.js | 4 |
5 files changed, 14 insertions, 10 deletions
diff --git a/ext/bg/js/templates.js b/ext/bg/js/templates.js index ed6d3dd8..f8306b1b 100644 --- a/ext/bg/js/templates.js +++ b/ext/bg/js/templates.js @@ -302,7 +302,7 @@ templates['kanji.html'] = template({"1":function(container,depth0,helpers,partia return " <a href=\"#\" title=\"Add Kanji\" class=\"action-add-note pending disabled\" data-mode=\"kanji\" data-index=\"" + container.escapeExpression(((helper = (helper = helpers.index || (data && data.index)) != null ? helper : helpers.helperMissing),(typeof helper === "function" ? helper.call(depth0 != null ? depth0 : {},{"name":"index","hash":{},"data":data}) : helper))) - + "\"><img src=\"img/add_kanji.png\"></a>\n"; + + "\"><img src=\"/fg/img/add_kanji.png\"></a>\n"; },"4":function(container,depth0,helpers,partials,data) { var stack1; @@ -362,7 +362,7 @@ templates['kanji.html'] = template({"1":function(container,depth0,helpers,partia },"18":function(container,depth0,helpers,partials,data) { return "<hr>"; },"20":function(container,depth0,helpers,partials,data) { - return " <p>No results found</p>\n"; + return " <p>No results found.</p>\n"; },"compiler":[7,">= 4.0.0"],"main":function(container,depth0,helpers,partials,data,blockParams,depths) { var stack1; @@ -459,15 +459,15 @@ templates['terms.html'] = template({"1":function(container,depth0,helpers,partia return " <a href=\"#\" title=\"Add term as expression\" class=\"action-add-note pending disabled\" data-mode=\"term_kanji\" data-index=\"" + alias4(((helper = (helper = helpers.index || (data && data.index)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"index","hash":{},"data":data}) : helper))) - + "\"><img src=\"img/add_term_kanji.png\"></a>\n <a href=\"#\" title=\"Add term as reading\" class=\"action-add-note pending disabled\" data-mode=\"term_kana\" data-index=\"" + + "\"><img src=\"/fg/img/add_term_kanji.png\"></a>\n <a href=\"#\" title=\"Add term as reading\" class=\"action-add-note pending disabled\" data-mode=\"term_kana\" data-index=\"" + alias4(((helper = (helper = helpers.index || (data && data.index)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"index","hash":{},"data":data}) : helper))) - + "\"><img src=\"img/add_term_kana.png\"></a>\n"; + + "\"><img src=\"/fg/img/add_term_kana.png\"></a>\n"; },"15":function(container,depth0,helpers,partials,data) { var helper; return " <a href=\"#\" title=\"Play audio\" class=\"action-play-audio\" data-index=\"" + container.escapeExpression(((helper = (helper = helpers.index || (data && data.index)) != null ? helper : helpers.helperMissing),(typeof helper === "function" ? helper.call(depth0 != null ? depth0 : {},{"name":"index","hash":{},"data":data}) : helper))) - + "\"><img src=\"img/play_audio.png\"></a>\n"; + + "\"><img src=\"/fg/img/play_audio.png\"></a>\n"; },"17":function(container,depth0,helpers,partials,data) { var stack1, helper, options, alias1=depth0 != null ? depth0 : {}, alias2=helpers.helperMissing, alias3="function", buffer = " <div class=\"expression\"><ruby>"; @@ -542,7 +542,7 @@ templates['terms.html'] = template({"1":function(container,depth0,helpers,partia },"36":function(container,depth0,helpers,partials,data) { return "<hr>"; },"38":function(container,depth0,helpers,partials,data) { - return " <p>No results found</p>\n"; + return " <p>No results found.</p>\n"; },"compiler":[7,">= 4.0.0"],"main":function(container,depth0,helpers,partials,data,blockParams,depths) { var stack1; diff --git a/ext/bg/search.html b/ext/bg/search.html index 68bc6e03..0737f99c 100644 --- a/ext/bg/search.html +++ b/ext/bg/search.html @@ -18,6 +18,10 @@ </form> </p> + <div id="spinner"> + <img src="img/spinner.gif"> + </div> + <div id="content"></div> </div> <script src="../lib/jquery-3.1.1.min.js"></script> diff --git a/ext/fg/css/frame.css b/ext/fg/css/frame.css index 9697ba2e..e2006328 100644 --- a/ext/fg/css/frame.css +++ b/ext/fg/css/frame.css @@ -41,7 +41,7 @@ hr { margin-bottom: 0.8em; } -.spinner { +#spinner { bottom: 5px; display: none; position: fixed; diff --git a/ext/fg/frame.html b/ext/fg/frame.html index 14fd63c1..a5baee98 100644 --- a/ext/fg/frame.html +++ b/ext/fg/frame.html @@ -9,7 +9,7 @@ </head> <body> <div class="container-fluid"> - <div class="spinner"> + <div id="spinner"> <img src="img/spinner.gif"> </div> diff --git a/ext/fg/js/frame.js b/ext/fg/js/frame.js index 32e227d0..c1253e41 100644 --- a/ext/fg/js/frame.js +++ b/ext/fg/js/frame.js @@ -75,7 +75,7 @@ class Frame { const sequence = ++this.sequence; const params = { definitions, - addable: options.ankiMethod !== 'disabled' + addable: options.anki.enabled }; definitions.forEach(definition => { @@ -165,7 +165,7 @@ class Frame { } showSpinner(show) { - const spinner = $('.spinner'); + const spinner = $('#spinner'); if (show) { spinner.show(); } else { |