Jump to content

core.js.map / front.js.map issue


Recommended Posts

  • 5 months later...
On 2/17/2021 at 12:34 PM, jasonlj said:

update :

i deleted line : //# sourceMappingURL=front.js.map and //# sourceMappingURL=core.js.map and it fix the problem on other browser but not in mozilla 😕

Hi,

from where you delete? should I create also core.js.map ? Like I clone the file and add myself .map?

Link to comment
Share on other sites

  • 4 weeks later...

Hello ,

Do you use an ajax function ? if it's yes, put your function in async:false to solve this problems on mozilla.

$('.remove-from-cart').click(function () {  
    var date = $(this).attr("id");
    alert(date)
    $.ajax(
        {
        type: 'POST',
        async: false,
        url:'modules/formations/ajaxFormations.php',       
        data:
        {            
        "Remove" :date,
        },

        success: function(data)
        {
            console.log(data);
        }
 });
});

 

Link to comment
Share on other sites

  • 4 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...