diff options
| -rwxr-xr-x | assets/js/search.js | 6 | ||||
| -rwxr-xr-x | index.html | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/assets/js/search.js b/assets/js/search.js index c2f43b2..bd3fc2a 100755 --- a/assets/js/search.js +++ b/assets/js/search.js @@ -1,5 +1,6 @@ var sindex = 0; var cycle = false; +var sengine = "https://www.google.com/?q="; // Default search engine function start() { var query = getParameterByName('q'); @@ -92,6 +93,9 @@ function search(text) { case "y": window.location = "https://www.youtube.com/results?search_query=" + subtext; break; + case "g": + window.location = "https://www.google.com/?q=" + subtext; + break; } } else { var option = text.substr(1); @@ -116,7 +120,7 @@ function search(text) { else window.location = "https://" + text; } else { - window.location = "https://www.google.com/search?q=" + text; + window.location = sengine + text; } } @@ -86,7 +86,7 @@ <span class="iconify icon" data-icon="mdi-{{icon}}"></span> </div> <div class="apps_text"> - <a href="https://{{url}}" {{#if target}}target="{{target}}"{{/if}} >{{name}}</a> + <a href="http://{{url}}" {{#if target}}target="{{target}}"{{/if}} >{{name}}</a> <span id="app-address">{{url}}</span> </div> </div> |