print.phtml 296 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. ?>
  7. <script>
  8. require(
  9. [
  10. 'jquery'
  11. ],
  12. function($) {
  13. $(function() {
  14. window.print();
  15. });
  16. }
  17. );
  18. </script>