Product Description
function logShoppableMetrics(moduleName, showsAddToCart) {
if (window.ue && window.ue.count) {
window.ue.count(“aplus:shoppable:” + moduleName + “:addToCart”, showsAddToCart ? 1 : 0);
}
}
/**
* Common event handler for click and keydown events.
* @param {Event} event – The event object.
* @param {Function} handleClickOrEnter – Function to handle click or Enter key events.
* @param {Function} handleEsc – Function to handle Esc key events.
*/
// [TODO][AplusMantle-8064] Create common event handler util(key events, click events) in AplusModuleResources
function handleClickAndKeyEvents(event, handleClickOrEnterOrSpace) {
const ENTER_KEY_CODE = 13;
const ESCAPE_KEY_CODE = 27;
const SPACE_KEY_CODE = 32;
const isClick = event.type === ‘click’;
const isKeydown = event.type === ‘keydown’;
const isEnter = isKeydown && event.keyCode === ENTER_KEY_CODE;
const isSpace = isKeydown && event.keyCode === SPACE_KEY_CODE;
const isEsc = isKeydown && event.keyCode === ESCAPE_KEY_CODE;
if (isClick || isEnter || isSpace) {
handleClickOrEnterOrSpace();
} else if (isEsc) {
handleEsc(event);
}
}
/**
* Function to handle esc key event.
* @param {Event} event – The event object.
*/
function handleEsc(event) {
event.target.blur() // force remove focus
}




-
How to remove the kickstand on Starlink Gen 3?
1.On the longer end of the kickstand, you will find a small tab on the back.
2.Simply place two fingers under the tab and gently lift.
3.At the same time, move the kickstand out to the side. Lift and slide and it will pop out!
-
How to install the adapter onto the dish?
1.First, run the wire through the adapter.
2.Plug the wire into the dish.
3.Slide pipe adapter into place. Then push until you hear it click.
-
Will the dish turn on the pole or is it not tightened on the pole?
To make sure the dish is securely fastened to the pole, you need to tighten the screw that connect the adapter to the pole as hard as you can.
-
Where should this wall bracket be mounted?
Use the obstruction scanning tool to evaluate potential mounting locations, generally high enough without any objects like tall trees blocking the view of the sky. You will need to be standing on a roof, close to where you want to install Starlink.
-
What to do if you see a “Starlink Misaligned” error?
You will need to use the alignment tool in the starlink app to manually turn the dish in the correct direction while crawling to where the dish is located, and tighten the adjustment knob on the mount once it is correctly aligned.
Reviews
There are no reviews yet.