(function () {
var base = document.createElement(‘base’);
base.href = "https://cdn.jet-cdn.com/s3/csp/1567009766152/";
base.target = "_blank";
document.getElementsByTagName("head")[0].appendChild(base);
})();
/**
* @param {Element} element
* @param {SwipeDirection} direction
* @param {boolean=} opt_capture
* @constructor
*/
function SwipeHandler(element, direction, opt_capture) {
/**
* @type {Element}
* @private
*/
this.element_ = element;
/**
* @type {SwipeDirection}
* @private
*/
this.direction_ = direction;
/**
* @type {{x: ?number, y: ?number}}
* @private
*/
this.startPage_ = {x: null, y: null};
/**
* @type {{x: ?number, y: ?number}}
* @private
*/
this.endPage_ = {x: null, y: null};
/**
* @type {Array}
* @private
*/
this.listeners_ = [];
/**
* @type {Function}
* @private
*/
this.onTouchStartListener_ = this.onTouchStart.bind(this);
/**
* @type {Function}
* @private
*/
this.onTouchMoveListener_ = this.onTouchMove.bind(this);
/**
* @type {Function}
* @private
*/
this.onTouchCancelListener_ = this.onTouchCancel.bind(this);
/**
* @type {Function}
* @private
*/
this.onTouchEndListener_ = this.onTouchEnd.bind(this);
element.addEventListener(‘touchstart’, this.onTouchStartListener_, false);
element.addEventListener(‘touchmove’, this.onTouchMoveListener_, false);
element.addEventListener(‘touchcancel’, this.onTouchCancelListener_, false);
element.addEventListener(‘touchend’, this.onTouchEndListener_, false);
}
/**
* @param {Function} listener
*/
SwipeHandler.prototype.addEventListener = function(listener) {
this.listeners_ = this.listeners_.concat(listener);
}
/**
* @param {Function} listener
*/
SwipeHandler.prototype.removeEventListener = function(listener) {
this.listeners_ = this.listeners_.filter(function(l) {
return l !== listener;
});
}
/**
*
*/
SwipeHandler.prototype.cancelEvent = function() {
this.startPage_ = {x: null, y: null};
this.endPage_ = {x: null, y: null};
}
/**
* @param {TouchEvent} event
* @private
*/
SwipeHandler.prototype.onTouchStart = function(event) {
if (event.touches.length === 1) {
this.startPage_ = {
x: event.touches[0].pageX,
y: event.touches[0].pageY
};
} else {
this.cancelEvent();
}
}
/**
* @param {TouchEvent} event
*/
SwipeHandler.prototype.onTouchMove = function(event) {
if (event.touches.length === 1) {
this.endPage_ = {
x: event.touches[0].pageX,
y: event.touches[0].pageY
};
} else {
this.cancelEvent();
}
//event.preventDefault();
}
/**
* @param {Event} e
*/
SwipeHandler.prototype.onTouchCancel = function(e) {
this.cancelEvent();
}
/**
* @param {Event} e
*/
SwipeHandler.prototype.onTouchEnd = function(e) {
const startPage = this.startPage_;
const endPage = this.endPage_;
if (startPage.x != null && startPage.y != null && endPage.x != null && endPage.y != null) {
const direction = (startPage.x sliderHeight) {
sliderHeight = itemHeight;
}
}.bind(this));
this.items.forEach(function (item, idx) {
var placeholderItem = document.createElement(‘div’);
placeholderItem.classList.add(‘placeholder’);
placeholderItem.dataset.revjetPlaceholderFor = idx;
item.parentElement.insertBefore(placeholderItem,item);
this.sliderTrack.appendChild(item);
item.style.width = this.itemWidth*(2/3) + ‘px’;
var itemWidth = item.getBoundingClientRect().width + 5;
sliderWidth += itemWidth;
item.classList.add(‘slider-slide’);
item.style.position = ‘absolute’;
item.style.top = ‘0’;
item.style.left = offset + ‘px’;
item.offset = offset;
item.style.height = sliderHeight + ‘px’;
//item.querySelector(‘img’).getBoundingClientRect().height;
offset += itemWidth;
}.bind(this));
sliderHeight = 0;
this.items.forEach(function(item) {
item.style.height = ‘auto’;
var itemHeight = item.getBoundingClientRect().height;
if (itemHeight > sliderHeight) {
sliderHeight = itemHeight;
}
});
this.items.forEach(function(item) {
item.style.height = sliderHeight + ‘px’;
});
this.clonedFirstNode = this.items[0].cloneNode(true);
this.clonedSecondNode = this.items[1].cloneNode(true);
this.clonedLastNode = this.items[this.items.length – 1].cloneNode(true);
this.clonedBeforeLastNode = this.items[this.items.length – 2].cloneNode(true);
this.sliderTrack.insertBefore(this.clonedLastNode, this.items[0]);
this.sliderTrack.insertBefore(this.clonedBeforeLastNode, this.clonedLastNode);
this.sliderTrack.appendChild(this.clonedFirstNode);
this.sliderTrack.appendChild(this.clonedSecondNode);
// cloned items width
this.clonedFirstNode.style.width = this.itemWidth*(4/3) + ‘px’;
this.clonedSecondNode.style.width = this.itemWidth*(4/3) + ‘px’;
this.clonedLastNode.style.width = this.itemWidth*(2/3) + ‘px’;
this.clonedBeforeLastNode.style.width = this.itemWidth*(2/3) + ‘px’;
// height
this.clonedFirstNode.style.height = sliderHeight + ‘px’;
this.clonedSecondNode.style.height = sliderHeight + ‘px’;
this.clonedLastNode.style.height = sliderHeight + ‘px’;
this.clonedBeforeLastNode.style.height = sliderHeight + ‘px’;
this.clonedFirstNode.style.left = offset + ‘px’;
this.clonedSecondNode.style.left = offset + this.clonedFirstNode.getBoundingClientRect().width + 5 + ‘px’;
this.clonedLastNode.style.left = (-this.clonedLastNode.getBoundingClientRect().width – 5) + ‘px’;
this.clonedBeforeLastNode.style.left = (-this.clonedLastNode.getBoundingClientRect().width – this.clonedBeforeLastNode.getBoundingClientRect().width – 10) + ‘px’;
sliderWidth += this.clonedFirstNode.getBoundingClientRect().width + 5;
sliderWidth += this.clonedSecondNode.getBoundingClientRect().width + 5;
sliderWidth += this.clonedLastNode.getBoundingClientRect().width + 5;
sliderWidth += this.clonedBeforeLastNode.getBoundingClientRect().width + 5;
this.sliderTrack.style.width = sliderWidth + ‘px’;
this.container.style.height = sliderHeight + 50 + ‘px’;
this.addPagination();
this.setActive(0);
this.active = 0;
this.setArrows();
window.addEventListener(‘resize’, this.resizeEvent);
if (this.enableSwipeSupport) {
this.swipeHandler = new SwipeHandler(this.container, SwipeDirection.ANY);
this.swipeHandler.addEventListener(function(direction) {
this.onSwipeEvent(direction);
}.bind(this));
}
}.bind(this);
this.onSwipeEvent = function(direction) {
if (direction === SwipeDirection.LEFT_TO_RIGHT) {
this.showPrev();
} else if (direction === SwipeDirection.RIGHT_TO_LEFT) {
this.showNext();
}
}.bind(this);
this.showNext = function() {
if (this.active 0) {
this.setActive(this.active-1);
} else {
this.setActive(this.items.length – 1,true);
}
}.bind(this);
this.resizeEvent = function(e) {
this.resizeFunc();
}.bind(this);
this.setEnableSwipeSupport = function(enableSwipeSupport) {
this.enableSwipeSupport = enableSwipeSupport;
}.bind(this);
this.resizeFunc = function() {
console.log(‘resize’);
this.itemWidth = this.container.getBoundingClientRect().width;
this.sliderWrapper.style.width = this.itemWidth + ‘px’;
var sliderWidth = 0;
var offset = 0;
var sliderHeight = 0;
for(var i = 0; i sliderHeight) {
sliderHeight = itemHeight;
}
}.bind(this));
this.items.forEach(function (item, idx) {
item.style.width = this.itemWidth*(2/3) + ‘px’;
var itemWidth = item.getBoundingClientRect().width + 5;
sliderWidth += itemWidth;
item.classList.add(‘slider-slide’);
item.style.position = ‘absolute’;
item.style.top = ‘0’;
item.style.left = offset + ‘px’;
item.offset = offset;
item.style.height = sliderHeight + ‘px’;
offset += itemWidth;
}.bind(this));
sliderHeight = 0;
this.items.forEach(function(item) {
item.style.height = ‘auto’;
var itemHeight = item.getBoundingClientRect().height;
if (itemHeight > sliderHeight) {
sliderHeight = itemHeight;
}
});
this.items.forEach(function(item) {
item.style.height = sliderHeight + ‘px’;
});
// cloned items width
this.clonedFirstNode.style.width = this.itemWidth*(4/3) + ‘px’;
this.clonedSecondNode.style.width = this.itemWidth*(4/3) + ‘px’;
this.clonedLastNode.style.width = this.itemWidth*(2/3) + ‘px’;
this.clonedBeforeLastNode.style.width = this.itemWidth*(2/3) + ‘px’;
// height
this.clonedFirstNode.querySelector(‘img’).style.height = this.items[0].querySelector(‘img’).getBoundingClientRect().height + ‘px’;
this.clonedSecondNode.querySelector(‘img’).style.height = this.items[0].querySelector(‘img’).getBoundingClientRect().height + ‘px’;
this.clonedFirstNode.style.height = sliderHeight + ‘px’;
this.clonedSecondNode.style.height = sliderHeight + ‘px’;
this.clonedLastNode.style.height = sliderHeight + ‘px’;
this.clonedBeforeLastNode.style.height = sliderHeight + ‘px’;
// left
this.clonedFirstNode.style.left = offset + ‘px’;
this.clonedSecondNode.style.left = offset + this.clonedFirstNode.getBoundingClientRect().width + 5 + ‘px’;
this.clonedLastNode.style.left = (-this.clonedLastNode.getBoundingClientRect().width – 5) + ‘px’;
this.clonedBeforeLastNode.style.left = (-this.clonedLastNode.getBoundingClientRect().width – this.clonedBeforeLastNode.getBoundingClientRect().width – 10) + ‘px’;
sliderWidth += this.clonedFirstNode.getBoundingClientRect().width + 5;
sliderWidth += this.clonedSecondNode.getBoundingClientRect().width + 5;
sliderWidth += this.clonedLastNode.getBoundingClientRect().width + 5;
sliderWidth += this.clonedBeforeLastNode.getBoundingClientRect().width + 5;
this.sliderTrack.style.width = sliderWidth + ‘px’;
this.container.style.height = sliderHeight + 50 + ‘px’;
this.setActive(this.active);
}.bind(this);
this.setArrows = function () {
this.prevArrow = document.createElement(‘div’);
this.prevArrow.classList.add(‘slider-arrow’, ‘slider-arrow-prev’);
this.prevArrow.addEventListener(‘pointerdown’, this.prevSlide);
this.nextArrow = document.createElement(‘div’);
this.nextArrow.classList.add(‘slider-arrow’, ‘slider-arrow-next’);
this.nextArrow.addEventListener(‘pointerdown’, this.nextSlide);
this.container.appendChild(this.prevArrow);
this.container.appendChild(this.nextArrow);
}.bind(this);
this.addPagination = function() {
this.paginationContainer = document.createElement(‘div’);
this.paginationContainer.classList.add(‘pagination’);
this.paginationWrapper = document.createElement(‘div’);
this.paginationWrapper.classList.add(‘pagination-track’);
this.dots = [];
for(var i = 0; i 5 ){
this.paginationContainer.style.width = ’90px’;
} else {
this.paginationContainer.style.width = ”;
}
this.paginationContainer.appendChild(this.paginationWrapper);
this.container.appendChild(this.paginationContainer);
}.bind(this);
this.setActive = function (index, isCloned = false) {
if (this.inactive) return;
this.active = index;
this.items.forEach(function (item, idx) {
if (idx == index) {
if (isCloned) {
switch (index) {
case 0:
var offset = parseInt(this.items[this.items.length – 1].style.left) + this.items[0].getBoundingClientRect().width;
this.dots.forEach(function(item){item.classList.remove(‘dot-active’)});
this.dots[0].classList.add(‘dot-active’);
this.items[0].classList.add(‘slide-active’);
this.paginationWrapper.style.transform = ‘translateX(0)’;
break;
case (this.items.length – 1):
this.dots.forEach(function(item){item.classList.remove(‘dot-active’)});
this.dots[this.items.length-1].classList.add(‘dot-active’);
var offset = -this.items[this.items.length – 1].getBoundingClientRect().width – 5;
this.items[this.items.length – 1].classList.add(‘slide-active’);
this.paginationWrapper.style.transform = ‘translateX(-‘+(this.items.length-5)*20+’px’;
break;
}
} else {
this.dots.forEach(function(item){item.classList.remove(‘dot-active’)});
this.dots[this.active].classList.add(‘dot-active’);
if (this.active > 2 && this.active < this.items.length -2) {
this.paginationWrapper.style.transform = 'translateX(-'+(this.active-2)*20+'px';
}
if (this.active 0) {
this.setActive(this.active – 1);
} else {
this.setActive(this.items.length – 1, true);
}
}.bind(this);
this.nextSlide = function () {
if (this.active < this.items.length – 1) {
this.setActive(this.active + 1);
} else {
this.setActive(0, true);
}
}.bind(this);
this.destroySlider = function() {
window.removeEventListener('resize',this.resizeEvent);
for(var i = 0; i < this.items.length; i++){
var currentPlaceholder = this.container.querySelector('.placeholder[data-revjet-placeholder-for="'+i+'"]');
console.log('currentPlaceholder',currentPlaceholder);
currentPlaceholder.parentElement.insertBefore(this.items[i],currentPlaceholder);
currentPlaceholder.parentElement.removeChild(currentPlaceholder);
//this.container.appendChild(this.items[i]);
this.items[i].style = '';
};
this.container.removeChild(this.sliderWrapper);
this.container.removeChild(this.paginationContainer);
this.container.removeChild(this.prevArrow);
this.container.removeChild(this.nextArrow);
this.container.removeAttribute('style');
}.bind(this);
};
(function(currentScript){
var thumbUpTriggered = false;
var flagTriggered = false;
var sliderInitialized = false;
if (window.revjet && window.revjet.elements_api) {
window.revjet.elements_api.listenOnce('show', function () {
var slider
var windowWidth = window.innerWidth;
console.log('windowwidth',windowWidth)
console.log('sliderInitialized',sliderInitialized);
if (windowWidth 576) {
if (sliderInitialized) {
slider.destroySlider();
for(var i = 0; i -1) {
el.style.userSelect = ‘text’;
el.addEventListener(‘mouseenter’, function (e) {
e.currentTarget.style.cursor = ‘text’;
});
}
if (tag ==’div’) {
if (el.dataset.revjetText) {
el.style.userSelect = ‘text’;
el.addEventListener(‘mouseenter’, function (e) {
e.currentTarget.style.cursor = ‘text’;
});
}
}
});
})
}
})(document.currentScript ||document.getElementsByTagName(‘script'[document.getElementsByTagName(‘script’).length – 1]))
window.Salt = {
"start": "900",
"firstQuartile": "901",
"midpoint": "902",
"thirdQuartile": "903",
"complete": "904",
"invisible": "905",
"adsDomainName": "https://rmt.homedepot.com",
"pixelPattern": "https://rmt.homedepot.com/interaction/%%PIXEL%%?__ads=77338d0613b79a6cbb4bf608a8f19578&vid=4756680826273915127&__adt=7275004251999089310&__ade=1&latent=%%LATENT%%" + "" + "",
"duration": 30
};
var revjet = revjet || {};
var eligibleActions = [];
eligibleActions = eligibleActions.concat([1005]);
revjet.elements = {
"widgets": [
{"id": "el63512522", "type": "container_element", "parentId": null}, {"id": "elframe_element63512555", "type": "frame_element", "parentId": "el63512522"}, {"id": "elframe_element63512534", "type": "frame_element", "parentId": "elframe_element63512555"}, {"id": "el63512549", "type": "html5_element", "parentId": "elframe_element63512534", "disableBrowserEvents": true},
],
"actions": window._disanim ? [] : [{"id": 1005,
"type": "start_animation",
"sourceWidgetId": "elframe_element63512534",
"events": [{
"type": "before_show"
}],
"widgetId": "elframe_element63512534",
"animatedWidgets": [],
"animationName": "On Load",
"className": "run-animation-on-load",
"finalClassName": "run-animation",
"finalStyle": [],
"maxRunCount": "",
"execDelay": "0",
"iterationCount": 1,
"relatedActions": [1006]
},{
"id": 1006,
"type": "start_html5_animation",
"sourceWidgetId": "elframe_element63512534",
"events": [{
"type": "before_show"
}],
"widgetId": "elframe_element63512534",
"maxRunCount": "",
"execDelay": "0",
"iterationCount": 1,
"widgets": [],
"stopEventPropagation": false
},],
"tracking": [
/*
{
‘type’: ‘mraid_loaded’,
‘pixels’: [{"type":"image","url":"https://rmt.homedepot.com/interaction/1001?__ads=77338d0613b79a6cbb4bf608a8f19578&__adt=7275004251999089310&__ade=1&vid=4756680826273915127"}]
},
*/
{
‘type’: ‘mraid_viewable’,
‘pixels’: [{"type":"image","url":"https://rmt.homedepot.com/interaction/899?__ads=77338d0613b79a6cbb4bf608a8f19578&__adt=7275004251999089310&__ade=1&vid=4756680826273915127"}]
},
{
‘type’: ‘open_link’,
‘pixels’: []
},
{
‘type’: ‘click_heatmap’,
‘pixels’: [{"type":"image","url":"https://rmt.homedepot.com/interaction/2500?__ads=77338d0613b79a6cbb4bf608a8f19578&__adt=7275004251999089310&__ade=1&vid=4756680826273915127"}]
},
{
‘type’: ‘video_started’,
‘pixels’: [{"type":"image","url":"https://rmt.homedepot.com/interaction/1103?__ads=77338d0613b79a6cbb4bf608a8f19578&__adt=7275004251999089310&__ade=1&vid=4756680826273915127"}]
},
{
‘type’: ‘video_first_quartile’,
‘pixels’: [{"type":"image","url":"https://rmt.homedepot.com/interaction/1104?__ads=77338d0613b79a6cbb4bf608a8f19578&__adt=7275004251999089310&__ade=1&vid=4756680826273915127"}]
},
{
‘type’: ‘video_midpoint’,
‘pixels’: [{"type":"image","url":"https://rmt.homedepot.com/interaction/1105?__ads=77338d0613b79a6cbb4bf608a8f19578&__adt=7275004251999089310&__ade=1&vid=4756680826273915127"}]
},
{
‘type’: ‘video_third_quartile’,
‘pixels’: [{"type":"image","url":"https://rmt.homedepot.com/interaction/1106?__ads=77338d0613b79a6cbb4bf608a8f19578&__adt=7275004251999089310&__ade=1&vid=4756680826273915127"}]
},
{
‘type’: ‘video_complete’,
‘pixels’: [{"type":"image","url":"https://rmt.homedepot.com/interaction/1107?__ads=77338d0613b79a6cbb4bf608a8f19578&__adt=7275004251999089310&__ade=1&vid=4756680826273915127"}]
},
{
‘type’: ‘expand’,
‘pixels’: [{"type":"image","url":"https://rmt.homedepot.com/interaction/1112?__ads=77338d0613b79a6cbb4bf608a8f19578&__adt=7275004251999089310&__ade=1&vid=4756680826273915127"}]
},
{
‘type’: ‘collapse’,
‘pixels’: [{"type":"image","url":"https://rmt.homedepot.com/interaction/1192?__ads=77338d0613b79a6cbb4bf608a8f19578&__adt=7275004251999089310&__ade=1&vid=4756680826273915127"}]
},
{
‘type’: ‘javascript_error’,
‘pixels’: []
}
/*
{
‘type’: ‘slider_card_view’,
‘pixels’: [{"type":"image","url":"https://rmt.homedepot.com/interaction/911?__ads=77338d0613b79a6cbb4bf608a8f19578&__adt=7275004251999089310&__ade=1&vid=4756680826273915127"}]
}
*/,
],
"options": {
‘hideBody’: true,
‘hideMethod’: ‘visibility’,
‘disableAnimation’: window._disanim
},
"personalization": [{"id":"el63512549","type":"html5","value":[{"pod_6_color":"#FFFFFF","attribute4_value":"33.5 in","sku_id":"47413310$$312283386,42520550$$312283386","pod_3_alt_text":"Handprints on fridge with diagonal slash through fingerprint","pod_13_copy":"35.91" W x 70.09" H x 33.5" D","attribute12_value":"Crushed Ice","pod_3_background":"https://cdn.jet-cdn.com/s3/csp/1632317020280/Fingerprint-Resistant-5200.gif","pod_7_color":"#FFFFFF","pod_3_color":"#FFFFFF","pod_2_copy":"Clean lines and modern form blend beautifully.","attribute13_value":"Cubed Ice","pod_3_copy":"Less smudging means less cleaning.","pod_13_alt_text":"Height, depth and width lines indicate how refrigerator size is measured","pod_2_background":"https://cdn.jet-cdn.com/s3/csp/1632317032158/Modern-Design-5200.png","attribute8_value":"In-Door Ice Maker","pod_5_alt_text":"Icon shows glass of ice next to ice maker in freezer door","pod_9_alt_text":"Arrows next to shelf icon show how shelf size can be changed","pod_3_copy_headline":"Fingerprint Resistant Finish","pod_11_copy":"Alerts if the door is left open after 2 minutes.","pod_4_background":"https://cdn.jet-cdn.com/s3/csp/1632317013735/All-Around-Cooling.gif","pod_2_alt_text":"Photo shows refrigerator in a modern kitchen with cabinetry and backsplash","pod_10_copy":"Transparent drawers offer easy visibility.","attribute11_value":"Water Filtration","pod_12_copy_headline":"ADA Compliant","pod_13_color":"#FFFFFF","attribute4_category":"Depth","attribute10_value":"Filtered Ice","attribute16_category":"Features","pod_9_color":"#FFFFFF","attribute9_value":"Water Dispenser","attribute3_value":"68.66 in","pod_11_alt_text":"Icon shows door open with alarm bell","attribute6_category":"Height to Top of Door Hinge (in.)","attribute6_value":"70.09 in","pod_13_background":"https://cdn.jet-cdn.com/s3/csp/1632317035382/Standard-Dimensions-Icon.jpg","attribute7_category":"Ice Maker Type","pod_13_copy_headline":"Standard Dimensions","attribute1_value":"Standard Depth","pod_5_color":"#FFFFFF","pod_9_copy_headline":"Adjustable Top Freezer Shelf","attribute5_value":"Ice Maker","attribute5_category":"Ice Maker Features","pod_8_alt_text":"Icon shows milk gallon inside of shelf","pod_5_background":"https://cdn.jet-cdn.com/s3/csp/1632317027344/In-Door-Ice-Maker.gif","pod_4_copy":"Keeps every shelf evenly cooled.","pod_5_copy_headline":"In-Door Ice Maker","attribute10_category":"Ice Maker Features","pod_4_alt_text":"Icons with snowflakes float around fridge to indicate all around cooling","pod_8_color":"#FFFFFF","attribute16_value":"Smudge-Proof","pod_1_copy":"Fit more inside with 10% larger capacity.","pod_2_color":"#FFFFFF","pod_1_alt_text":"Photos of food start on bottom right shelf and fill up refrigerator shelf by shelf","pod_12_color":"#FFFFFF","attribute14_value":"35.91 in","pod_6_copy_headline":"Minimal Display Dispenser","pod_4_color":"#FFFFFF","pod_8_background":"https://cdn.jet-cdn.com/s3/csp/1632317025366/Gallon-Door-Bins-Icon.jpg","pod_2_copy_headline":"Modern Design","pod_6_background":"https://cdn.jet-cdn.com/s3/csp/1632317029884/Minimal-Display-Dispenser-5200.gif","attribute8_category":"Ice Maker Features","pod_1_background":"https://cdn.jet-cdn.com/s3/csp/1632317027633/Large-Capacity-10percent.gif","pod_1_color":"#FFFFFF","pod_12_background":"https://cdn.jet-cdn.com/s3/csp/1632317011228/ADA-Icon.jpg","pod_9_copy":"Easily adjusts to fit taller items and provide flexible storage.","attribute9_category":"Dispenser Features","attribute7_value":"Single Ice Maker","pod_1_copy_headline":"Large Capacity","pod_8_copy_headline":"Gallon Door Bins","pod_9_background":"https://cdn.jet-cdn.com/s3/csp/1632317012283/Adjustable-Freezer-Shelf-Icon.jpg","attribute3_category":"Height to Top (in.)","attribute15_value":"Automatic Ice Level Control/Shutoff","brand_footer":"false","pod_4_copy_headline":"All-Around Cooling","attribute2_category":"Total Capacity (cu. ft.)","attribute2_value":"27.4 cu ft","pod_7_background":"https://cdn.jet-cdn.com/s3/csp/1632317029502/LED-Lighting.gif","pod_7_copy":"Designed to beautifully light up the interior of your fridge.","pod_7_alt_text":"Photo shows light illuminating on inside fridge","attribute15_category":"Ice Maker Features","sku_type":"vendor-13","attribute14_category":"Width (In.)","brand_banner":"false","pod_10_copy_headline":"Two Clear Drawers","pod_8_copy":"Provide more shelf space inside the fridge.","pod_11_copy_headline":"Door Alarm","attribute13_category":"Dispenser Features","pod_5_copy":"Produces ice at a high-capacity while saving shelf space for frozen foods.","pod_7_copy_headline":"High-efficiency LED Lighting","pod_11_color":"#FFFFFF","pod_6_alt_text":"Blue water droplets fill up glass sitting under dispenser","attribute12_category":"Dispenser Features","pod_11_background":"https://cdn.jet-cdn.com/s3/csp/1632317015939/Door-Alarm-Icon.jpg","attribute1_category":"Installation Depth","pod_12_alt_text":"White type in black circle says ADA Compliant","attribute11_category":"Dispenser Features","pod_10_alt_text":"Icon shows two transparent drawers outlined in blue","pod_10_color":"#FFFFFF","pod_6_copy":"Integrated ice and water dispenser provides easy access.","pod_10_background":"https://cdn.jet-cdn.com/s3/csp/1632317037013/Two-Clear-Drawers-Icon.jpg","pod_12_copy":"Easy-to-reach controls for everyone."}],"elp_id":"elp89601872","pers_type":"doa"}],
"eligibleActions": eligibleActions
};
function pauseAnimation() {
var element = document.getElementById(‘content_body’);
if (!element.classList.contains(‘animation_paused’)) {
element.classList.add(‘animation_paused’);
}
element.getBoundingClientRect();
}
function resumeAnimation() {
var element = document.getElementById(‘content_body’);
if (element.classList.contains(‘animation_paused’)) {
element.classList.remove(‘animation_paused’);
}
element.getBoundingClientRect();
}
var prefixes = [‘moz’, ‘ms’, ‘webkit’];
var hiddenProperty = ‘hidden’;
var visibilityChangeEventName = ‘visibilitychange’;
for (var i = 0; i < prefixes.length; i++) {
if (document[prefixes[i] + 'Hidden']) {
hiddenProperty = prefixes[i] + 'Hidden';
visibilityChangeEventName = prefixes[i] + visibilityChangeEventName;
break;
}
}
document.addEventListener(visibilityChangeEventName, function() {
if (document[hiddenProperty]) {
pauseAnimation();
} else {
resumeAnimation();
}
}, false);













Reviews
There are no reviews yet