Commit 8eb33520 by Bach Dániel

dashboard: add missing semicolons

parent 01e6d417
...@@ -11,9 +11,9 @@ $(function() { ...@@ -11,9 +11,9 @@ $(function() {
if(hash) { if(hash) {
var menu; var menu;
if($(hash).closest(".tab-pane").prop("class").indexOf("overview") != -1) { if($(hash).closest(".tab-pane").prop("class").indexOf("overview") != -1) {
menu = "#overview_menu" menu = "#overview_menu";
} else { } else {
menu = "#faq_menu" menu = "#faq_menu";
} }
$(menu).click(); $(menu).click();
$("html, body").animate({scrollTop: $(hash).offset().top}, 500); $("html, body").animate({scrollTop: $(hash).offset().top}, 500);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment