Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Account Settings #11

Closed
bretto36 opened this issue Jul 19, 2016 · 5 comments
Closed

Account Settings #11

bretto36 opened this issue Jul 19, 2016 · 5 comments

Comments

@bretto36
Copy link

Can't click to get to other areas of settings page. I'd like to delete my account but there is no option

@canvasowl
Copy link
Owner

@bretto36 Can you please specify what browser and version you are using. I cannot replicate this
bug you are referring to. Thanks

@bretto36
Copy link
Author

Firefox 47 - Windows 8

Have tested in chrome and it is working

@bretto36
Copy link
Author

Seems to be a JS error

ReferenceError: event is not defined

event.preventDefault();

Fix below: (Added event into function() part)

function megaMenuInit(){
$(".mega-menu .links a").click(function(event){
event.preventDefault();

    $(".mega-menu .links a").removeClass("active").addClass("inactive");
    $(this).removeClass("inactive").addClass("active");

    var id = "#" + $(this).attr("data-id");
    $(".mega-menu .content .item").hide();
    $(id).show();
});

}

@canvasowl
Copy link
Owner

This has been taken care of

@ghanoumwael
Copy link

hii the function megaMenuInit() it exist for me as a call in show where find define it in js

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants