angular-card
angular-card copied to clipboard
Not working into modal
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
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);