post-gallery.js 610 B

12345678910111213141516171819202122232425
  1. /**
  2. * Copyright © 2015-2017 Ihor Vansach (ihor@magefan.com). All rights reserved.
  3. * See LICENSE.txt for license details (http://opensource.org/licenses/osl-3.0.php).
  4. *
  5. * Glory to Ukraine! Glory to the heroes!
  6. */
  7. /*jshint jquery:true*/
  8. define([
  9. 'jquery',
  10. 'underscore',
  11. 'mage/template',
  12. 'uiRegistry',
  13. 'productGallery',
  14. 'jquery/ui',
  15. 'baseImage'
  16. ], function ($, _, mageTemplate, registry, productGallery) {
  17. 'use strict';
  18. $.widget('mage.productGallery', $.mage.productGallery, {
  19. _showDialog: function (imageData) {}
  20. });
  21. return $.mage.productGallery;
  22. });