Merge pull request #12 from GAMIS65/master

Fixed search
This commit is contained in:
Jared Jones 2020-12-02 12:26:15 -06:00 committed by GitHub
commit abcdcf5320
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@
function search(e) { function search(e) {
if (e.keyCode == 13) { if (e.keyCode == 13) {
var val = document.getElementById("search-field").value; var val = document.getElementById("search-field").value;
window.open(searchurl + val); window.open(searchUrl + val);
} }
} }
// Get current time and format // Get current time and format