forked from mirror/Part-DB.Part-DB-server
8 lines
191 B
JavaScript
8 lines
191 B
JavaScript
|
import {Controller} from "@hotwired/stimulus";
|
||
|
|
||
|
export default class extends Controller
|
||
|
{
|
||
|
download(event) {
|
||
|
this.element.href = document.getElementById('pdf_preview').data
|
||
|
}
|
||
|
}
|