feat: copy text docname on click of subtitle

This commit is contained in:
Shivam Mishra 2020-06-18 20:21:22 +05:30
parent 69fc7812ae
commit fdf442cf33

View file

@ -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;