Problem with MDBBOOSTRAP

0
Well, I'm using the hrefs below and everything fucnionava perfectly until yesterday 07/02/2018, today to tomorrow when I opened the website and clicked on a logo to open the models simply does not open, so it seems that it is invisible: / The issue is that, from yesterday to today, nothing has been edited in my files.

<link href="https://mdbootstrap.com/previews/docs/latest/css/bootstrap.min.css" rel="stylesheet">

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">

<link href="https://mdbootstrap.com/previews/docs/latest/css/mdb.min.css" rel="stylesheet">

You can view the problem by visiting this link - > link

Clicking the logo should open a popup style template. but this does not happen anymore, the funny thing is that if you click on the logo and after 2 seconds, you give 2 clicks in the middle of the screen, the video loads in full screen.

Until I downloaded the files directly on the mdboostrap site and put it on the server, I changed the references pointing to these files, but the problem continues.

    
asked by anonymous 08.02.2018 / 15:39

1 answer

1

Opening the console in your application, we can see that it is displaying the error message: "has been blocked by CORS policy: No 'Access-Control-Allow-Origin'" ie you are not allowed to perform request to this location.

Print taken from the console on your page:

Learn more about Same Origin Policy here .

    
08.02.2018 / 15:46