| Current Path : /var/www/homesaver/www/bitrix/js/catalog/store-use/src/ |
| Current File : /var/www/homesaver/www/bitrix/js/catalog/store-use/src/product-grid-menu.js |
import { StoreSlider } from './slider';
class ProductGridMenu
{
static reloadGridAction()
{
document.location.reload();
}
static openWarehousePanel(url)
{
new StoreSlider().open(
url,
{
data: {
closeSliderOnDone: false,
},
},
)
.then(() => {
ProductGridMenu.reloadGridAction();
})
.catch(() => {});
}
}
export {
ProductGridMenu,
};