Normalized indentation

This commit is contained in:
Steffen Schaefer
2018-01-08 17:41:00 +01:00
parent 4ad3a50772
commit e162b53eca
+7 -7
View File
@@ -19,13 +19,13 @@
<script type="text/javascript"> <script type="text/javascript">
function handleSearch() { function handleSearch() {
var searchUrl = "https://www.sapsailing.com/gwt/Home.html#SearchResultPlace:"; var searchUrl = "https://www.sapsailing.com/gwt/Home.html#SearchResultPlace:";
var searchBox = document.getElementById("searchBox"); var searchBox = document.getElementById("searchBox");
if (searchBox && searchBox.value) { if (searchBox && searchBox.value) {
searchUrl += searchBox.value; searchUrl += searchBox.value;
} }
window.location.href = searchUrl; window.location.href = searchUrl;
return false; return false;
} }
</script> </script>