Whirlpool 19 cu. ft. Bottom-Freezer Refrigerator with Freezer Drawer(W
Storing all of your favorite fresh and frozen foods is easy with this 19 cu. ft. capacity bottom-freezer refrigerator featuring a convenient freezer drawer that places frozen items in close reach, making it easy to organize and find exactly what you need. You'll be able to keep food at the right temperature without wasting energy thanks to the Accu-Chill temperature management system, which uses built-in sensors to measure internal temperature and activates the compressor only when necessary. That food will look just as it should with energy-efficient LED lights, which cast a more natural light, while the FreshFlow produce preserver extends the freshness of produce for up to 4 days longer to keep fruits and vegetables tasting great.
{
st_add_to_cart(event)
}, false);
// Special code to handle real-time price updates
stSTyleFinderWidget.addEventListener("st_dc_on_initial_load", (event) => {
// detect the sku's that need updates (initial load returns array of 4 items that need price updates)
var items = event.detail.alternateItems;
// make API calls to get the latest zone prices
const promise1 = update_pricing(items[0].id);
const promise2 = update_pricing(items[1].id);
const promise3 = update_pricing(items[2].id);
const promise4 = update_pricing(items[3].id);
Promise.all([promise1, promise2, promise3, promise4]).then(send_pricing);
}, false);
stSTyleFinderWidget.addEventListener("st_dc_replace_item", (event) => {
// remove the old item pricing
var previous_item = event.detail.replacedItemId;
remove_pricing(previous_item);
// add the new item pricing
var sku = event.detail.itemId;
prices_updating = 1;
const promise1 = update_pricing(sku);
promise1.then(send_pricing);
}, false);
}
function waitForSTWidget(callback) {
if (document.getElementsByTagName("shoptelligence-dc-widget").length>0) {
callback();
} else {
setTimeout(() => waitForSTWidget(callback), 50);
}
}
waitForSTWidget(setup_listeners);
'
>