FIX: allows right-click on post-date sharing link (#7054)
This commit is contained in:
parent
d1bad881ea
commit
8aca26cce3
|
@ -243,6 +243,7 @@ createWidget("post-date", {
|
||||||
{
|
{
|
||||||
attributes: {
|
attributes: {
|
||||||
class: "post-date",
|
class: "post-date",
|
||||||
|
href: attrs.shareUrl,
|
||||||
"data-share-url": attrs.shareUrl,
|
"data-share-url": attrs.shareUrl,
|
||||||
"data-post-number": attrs.post_number
|
"data-post-number": attrs.post_number
|
||||||
}
|
}
|
||||||
|
@ -258,7 +259,9 @@ createWidget("post-date", {
|
||||||
return lastWikiEdit ? lastWikiEdit : createdAt;
|
return lastWikiEdit ? lastWikiEdit : createdAt;
|
||||||
},
|
},
|
||||||
|
|
||||||
click() {
|
click(event) {
|
||||||
|
event.preventDefault();
|
||||||
|
|
||||||
const post = this.findAncestorModel();
|
const post = this.findAncestorModel();
|
||||||
|
|
||||||
const modalFallback = () => {
|
const modalFallback = () => {
|
||||||
|
|
Loading…
Reference in New Issue