| Current Path : /var/www/clients/client3/web2/web/vendor/magento/theme-frontend-blank/Magento_Theme/web/js/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/theme-frontend-blank/Magento_Theme/web/js/theme.js |
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
define([
'jquery',
'mage/smart-keyboard-handler',
'mage/mage',
'mage/ie-class-fixer',
'domReady!'
], function ($, keyboardHandler) {
'use strict';
$('.cart-summary').mage('sticky', {
container: '#maincontent'
});
$('.panel.header > .header.links').clone().appendTo('#store\\.links');
$('#store\\.links li a').each(function () {
var id = $(this).attr('id');
if (id !== undefined) {
$(this).attr('id', id + '_mobile');
}
});
keyboardHandler.apply();
});