| Current Path : /var/www/homesaver/www/bitrix/js/landing/history/src/action/ |
| Current File : /var/www/homesaver/www/bitrix/js/landing/history/src/action/replace-landing.js |
const {scrollTo, highlight} = BX.Landing.Utils;
/**
* @param {object} entry
* @return {Promise}
*/
export default function replaceLanding(entry)
{
return new Promise((resolve, reject) => {
top.window.location.reload();
resolve();
});
}