Hi
Im experienced dev (15 years +) but new to Polymer.
I am stuck while i try and update an array with objects loaded in from external api.
moltin.Authenticate( function() {
window.addEventListener( 'MoltinReady', function(response) {
moltin.Product.List({category:'11533901100405'}, function(product) {
for( obj in product ){
this.push('spices', obj)
}
});
});
});
Using polymer from bower and the issue reported in chrome is Uncaught TypeError: this.push is not a function - am i missing an import or something?