• Resolved LiamMcArthur

    (@liammcarthur)


    I’ve found some Javascript errors within script.js that causes problems with minification plugins:

    Line 14: var containerId = container.attr( 'id' )
    – has a missing semi-colon for termination of that line.

    Line 203-204: else
    return id;
    – missing correct use of braces. Most minification plugins ignore code written in this format. I corrected mine to:

    else {
      return id;
    }
Viewing 1 replies (of 1 total)
  • Plugin Author bestwebsoft

    (@bestwebsoft)

    Hi,

    Thanks for the message. We will do necessary changes in future plugin updates.

    Sincerely,
    BestWebSoft Support Team

Viewing 1 replies (of 1 total)
  • The topic ‘Javascript Errors’ is closed to new replies.