invoice.js 653 B

123456789101112131415
  1. // =========================================================================================
  2. // File Name: invoice.js
  3. // Description: Invoice print js
  4. // --------------------------------------------------------------------------------------
  5. // Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
  6. // Author: PIXINVENT
  7. // Author URL: http://www.themeforest.net/user/pixinvent
  8. // ==========================================================================================
  9. $(document).ready(function () {
  10. // print invoice with button
  11. $(".btn-print").click(function () {
  12. window.print();
  13. });
  14. });