This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(window).bind("load", function() { | |
CenterMap(new google.maps.LatLng(56.060188, -3.951609), 8); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/manager/settings/redirects.aspx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Make sure search form triggers on 'Enter' | |
$("#siteSearch").keydown(function(event) { | |
// enter has keyCode = 13, change it if you want to use another button | |
if (event.keyCode == 13) { | |
this.form.submit(); | |
return false; | |
} | |
}); |
NewerOlder