mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 06:32:40 +01:00
ab8b05dd56
* Install livewire/livewire * Table improvements - Cleanup of InvoiceController - Added Livewire package - New Livewire component (InvoicesTable) - New WithSorting trait - Removed rendering invoices from index.blade.php - Removed Yaryabox/Datatables references in InvoiceController * Refactor: Recurring invoices * payments table & sorting improvements * payment methods table * quotes table * credits table * Add turbolinks
17 lines
335 B
JavaScript
Vendored
17 lines
335 B
JavaScript
Vendored
/**
|
|
* Axios
|
|
*
|
|
* Promise based HTTP client for the browser and node.js
|
|
* https://github.com/axios/axios
|
|
*/
|
|
window.axios = require("axios");
|
|
|
|
/**
|
|
* Turoblinks
|
|
*
|
|
* Turbolinks makes navigating your web application faster
|
|
* https://github.com/turbolinks/turbolinks
|
|
*/
|
|
const Turbolinks = require("turbolinks");
|
|
Turbolinks.start();
|