Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/uicardiodev/hugo-sodium-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--static/js/script.js20
1 files changed, 11 insertions, 9 deletions
diff --git a/static/js/script.js b/static/js/script.js
index 65fb3e7..7ee9d02 100644
--- a/static/js/script.js
+++ b/static/js/script.js
@@ -56,15 +56,17 @@ $(document).ready(function(){
//Smooth scroll
$("a, button").click(function(event){
- if(this.hash !== ""){
- event.preventDefault();
- var hash = this.hash;
-
- $("html, body").animate({
- scrollTop: $(hash).offset().top
- }, 800, function(){
- window.location.hash = hash;
- })
+ if($(this).attr('type') != 'submit'){
+ if(this.hash !== ""){
+ event.preventDefault();
+ var hash = this.hash;
+
+ $("html, body").animate({
+ scrollTop: $(hash).offset().top
+ }, 800, function(){
+ window.location.hash = hash;
+ })
+ }
}
});