feat: copy text docname on click of subtitle
This commit is contained in:
parent
69fc7812ae
commit
fdf442cf33
1 changed files with 5 additions and 0 deletions
|
|
@ -36,6 +36,11 @@ frappe.ui.form.Toolbar = Class.extend({
|
|||
this.page.set_title_sub("");
|
||||
} else {
|
||||
this.page.set_title_sub(this.frm.docname);
|
||||
this.page.$sub_title_area.css("cursor", "copy");
|
||||
this.page.$sub_title_area.on('click', (event) => {
|
||||
event.stopImmediatePropagation();
|
||||
frappe.utils.copy_to_clipboard(this.frm.docname);
|
||||
});
|
||||
}
|
||||
} else {
|
||||
var title = this.frm.docname;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue