Using With SPA
Updating Widget
whisk.queue.push(function () {
// Creating widget
whisk.shoppingList.defineWidget('myWidget', {
recipeUrl: 'https://first-recipe-url',
});
// Removing widget
whisk.remove('myWidget');
// Creating new widget
whisk.shoppingList.defineWidget('myWidget', {
recipeUrl: 'https://second-recipe-url',
});
});whisk.queue.push(function() {
whisk.display('myWidget');
}); Updating Event Listeners
Subscriptions
Last updated
Was this helpful?