Skip to content

Commit

Permalink
0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorenzo Stramaccia committed Feb 1, 2017
1 parent 227c5d9 commit cd1d6d0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

},
"type": "magento2-module",
"version": "0.1.1",
"version": "0.1.2",
"license": "OSL 3.0",
"autoload": {
"files": [
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="MSP_LightSlider" setup_version="0.1.1">
<module name="MSP_LightSlider" setup_version="0.1.2">
<sequence>
<module name="Magento_Ui"/>
</sequence>
Expand Down
17 changes: 8 additions & 9 deletions view/frontend/web/js/lightslider.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
});

0 comments on commit cd1d6d0

Please sign in to comment.