Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • Ninja Lead Moderator
    #993710

    Hi,

    This module does not update for a long time but you can use this way to fix the problem on your site

    Open modules/mod_jaanimation/elements/assets/js/jadepend.js file

    find and change

    start: function(){
        $(document.adminForm).getElements('h4.block-head').each(function(el){
            this.closest(el, 'li, div.control-group').addClass('segment')
        }, this);
    
        $(document.adminForm).getElements('.hideanchor').each(function(el){
            this.closest(el, 'li, div.control-group').addClass('hide');
        }, this);
    
        this.update();
    }

    to

    start: function(){
        document.adminForm.getElements('h4.block-head').each(function(el){
            this.closest(el, 'li, div.control-group').addClass('segment')
        }, this);
    
        document.adminForm.getElements('.hideanchor').each(function(el){
            this.closest(el, 'li, div.control-group').addClass('hide');
        }, this);
        this.update();
    }

    Hope it helps

    Regards

    erickpaulino Friend
    #993952

    Hello,

    Thank you for your answer. Unfortunately, it didn’t work. I’m still getting the same error. On Chrome Console, this is what shows up (check attached pic).

    Any hints?

    Thank you,

    Erick


    1. jaanime
    Ninja Lead Moderator
    #994252

    Hi,

    You can rollback any your changed on your site and give me the URL of your site, admin login and FTP account via private reply. I will check it for you

    Regards

    erickpaulino Friend
    #994278
    This reply has been marked as private.
    Ninja Lead Moderator
    #994454
    This reply has been marked as private.
    erickpaulino Friend
    #994667

    Hello,

    I have added an exception to this file in .htaccess under Admin Tools and… whoaa, it worked.

    Thank you!

Viewing 6 posts - 1 through 6 (of 6 total)

This topic contains 6 replies, has 2 voices, and was last updated by  erickpaulino 7 years, 4 months ago.

The topic ‘Button "Save" not working.’ is closed to new replies.