Skip to content

Commit

Permalink
Merge pull request #3022 in SW/shopware from sw-12935/5.1/fixed-add-a…
Browse files Browse the repository at this point in the history
…rticle-plugin to 5.1

* commit 'e4d020ebf6271c0a078a103cc8a03d253d6cf701':
  SW-12935 Fixed wrapper function in jquery plugins
  SW-12935 Fixed swAddArticle wrapper function
  • Loading branch information
Marcel Schmäing committed Oct 22, 2015
2 parents a63b292 + e4d020e commit 3f07aec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;jQuery(function ($) {
;(function($, window) {
'use strict';

/**
Expand Down Expand Up @@ -188,4 +188,4 @@
$.publish('plugin/swAddArticle/onCloseModal', [ me ]);
}
});
});
})(jQuery, window);
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;jQuery(function ($) {
;(function($, window) {
'use strict';

$.plugin('swCollapseCart', {
Expand Down Expand Up @@ -428,4 +428,4 @@
me._destroy();
}
});
});
})(jQuery, window);
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;jQuery(function ($) {
;(function($, window) {
'use strict';

/**
Expand Down Expand Up @@ -523,4 +523,4 @@
$.publish('plugin/swInfiniteScrolling/onCloseLoadingIndicator', [ me ]);
}
});
});
})(jQuery, window);

0 comments on commit 3f07aec

Please sign in to comment.