Question

p.modal features dont work

  • 30 October 2021
  • 0 replies
  • 146 views

Userlevel 1

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.


This topic has been closed for comments