diff --git a/composer.json b/composer.json index e6dcd61..4285ab6 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ }, "type": "magento2-module", - "version": "0.1.1", + "version": "0.1.2", "license": "OSL 3.0", "autoload": { "files": [ diff --git a/etc/module.xml b/etc/module.xml index 7efc752..e4c06ac 100644 --- a/etc/module.xml +++ b/etc/module.xml @@ -1,7 +1,7 @@ - + diff --git a/view/frontend/web/js/lightslider.js b/view/frontend/web/js/lightslider.js index 9041dc1..c803f52 100644 --- a/view/frontend/web/js/lightslider.js +++ b/view/frontend/web/js/lightslider.js @@ -17,12 +17,11 @@ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ -define([ - "jquery" -], function($){ - define(["MSP_LightSlider/js/lightslider.min"], function () { - return function (config, elem) { - return $(elem).lightSlider(config); - } - }) -}); + define([ + "jquery", + "MSP_LightSlider/js/lightslider.min" + ], function($){ + return function (config, elem) { + return $(elem).lightSlider(config); + } + });