<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * @author    Blue Acorn iCi &lt;code@blueacornici.com&gt;
 * @copyright 2022 Blue Acorn iCi. All Rights Reserved.
 */

/**
 * The scrollRestoration property of History interface allows web applications
 * to explicitly set default scroll restoration behavior on history navigation.
 *
 * This file will set as manual if the user is on the cart page. Requested at MMG-1080.
 */
define([], function () {
    history.scrollRestoration = (location.pathname.replace(/\/$/, '') === '/checkout/cart') ? 'manual' : 'auto';
});
</pre></body></html>