@ -29,6 +29,10 @@ export default Vue.extend({
|
||||
icon: 'info-circle',
|
||||
text: this.$t('detail'),
|
||||
action: this.detail
|
||||
}], [{
|
||||
icon: 'align-left',
|
||||
text: this.$t('copy-content'),
|
||||
action: this.copyContent
|
||||
}], [{
|
||||
icon: 'link',
|
||||
text: this.$t('copy-link'),
|
||||
@ -81,6 +85,10 @@ export default Vue.extend({
|
||||
this.$router.push(`/notes/${this.note.id}`);
|
||||
},
|
||||
|
||||
copyContent() {
|
||||
copyToClipboard(this.note.text);
|
||||
},
|
||||
|
||||
copyLink() {
|
||||
copyToClipboard(`${url}/notes/${this.note.id}`);
|
||||
},
|
||||
|
@ -124,6 +124,7 @@ import {
|
||||
faMapMarker,
|
||||
faRobot,
|
||||
faHourglassHalf,
|
||||
faAlignLeft
|
||||
} from '@fortawesome/free-solid-svg-icons';
|
||||
|
||||
import {
|
||||
@ -255,6 +256,7 @@ library.add(
|
||||
faMapMarker,
|
||||
faRobot,
|
||||
faHourglassHalf,
|
||||
faAlignLeft,
|
||||
|
||||
farBell,
|
||||
farEnvelope,
|
||||
|
Reference in New Issue
Block a user