Skip to main content

I have this code but

PipefyApp.initCall({

"card-buttons": function (p, pipe) {

return [

{

icon: "./assets/sicronize.png",

text: "Buscar informações",

callback: openModal,

},

];

},

});

 

var openModal = function (p) {

p.modal({

url: "https://react-expensify-sample-app.herokuapp.com/",

height: "70%",

width: "70%",

});

};

 

 

 

My problem is: The modal keep loading forever. When I inspect the network traffic I can see the response code 200 and the ‘hello world’ content inside the iframe, as expected! but the modal keep loading and does not show the iframe content.

Be the first to reply!