angular-card icon indicating copy to clipboard operation
angular-card copied to clipboard

Not working into modal

Open 1brunovieira opened this issue 9 years ago • 1 comments
trafficstars

Hi,

I'm error when using modal panel with cordova ionic Moving it to normal container (not modal) works perfectly.

Erro's message: TypeError: el.insertAdjacentHTML is not a function

Is this an known issue?

best regards Bruno

1brunovieira avatar Sep 28 '16 23:09 1brunovieira

Work around that worked for me, in card.js, find line where:

new Card(opts);

And replace it with:

var intertvalId = setInterval(function() {
  var card;

  try {
    card = new Card(opts);
    clearInterval(intertvalId);
  } catch (e) {
  }
}, 1000);

mtasic85 avatar Oct 13 '16 18:10 mtasic85