back-event.js 319 B

123456789101112131415161718
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. define([
  6. 'jquery'
  7. ], function ($) {
  8. 'use strict';
  9. return function (config, element) {
  10. $(element).on('click', function () {
  11. history.back();
  12. return false;
  13. });
  14. };
  15. });