16 lines
640 B
JavaScript
16 lines
640 B
JavaScript
// =========================================================================================
|
|
// File Name: invoice-template.js
|
|
// Description: Treeview.
|
|
// --------------------------------------------------------------------------------------
|
|
// Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
|
|
// Author: PIXINVENT
|
|
// Author URL: http://www.themeforest.net/user/pixinvent
|
|
// ==========================================================================================
|
|
|
|
$(document).ready(function () {
|
|
// print invoice with button
|
|
$(".btn-print").click(function () {
|
|
window.print();
|
|
});
|
|
});
|