
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
fullcalendar-copy-paste
Advanced tools
The Plugin expands for FullCalendar, which aims to add copy and paste features using shortcuts.
The Plugin expands for FullCalendar, which aims to add copy and paste features using shortcuts.
| Actions | Window | Mac | Description |
|---|---|---|---|
| Copy | Ctrl + C | Cmd + C | Select event to copy. |
| Cut | Ctrl + X | Cmd + X | Select event to cut. |
| Paste | Ctrl + V | Cmd + V | Or you can press Enter or Click to paste. |
| Duplicate | Ctrl + D | Cmd + D | Instantly clone an event. |
| Cancel | ESC | ESC | Or click on the location outside the Calendar. |
npm i fullcalendar-copy-paste
import copyPastePlugin from 'fullcalendar-copy-paste'
new Calendar(calendarEl, {
plugins: [copyPastePlugin],
height: "100%",
}
| Fields | Type | Description |
|---|---|---|
| previewCopy | Boolean | Default: true, Set false if the u wants to catch the event without wanting the view to change. |
| eventCopy | Callback | Used when you want tho track changes of new and old events. |
Exp:
new Calendar(calendarEl, {
plugins: [copyPastePlugin],
height: "100%",
previewCopy: false,
eventCopy: (trigger) => {
const oldEvent = trigger.oldEvent;
const newEvent = trigger.event;
const type = trigger.type;
if (trigger.type === 'copy') {
// do something
} else if (trigger.type === 'cut') {
// do something
}
}
});
API for external code:
window.calendarUtils.copy(element as HTMLElement)
window.calendarUtils.cut(element as HTMLElement);
Contributor: ToanNguyen
FAQs
The Plugin expands for FullCalendar, which aims to add copy and paste features using shortcuts.
The npm package fullcalendar-copy-paste receives a total of 3 weekly downloads. As such, fullcalendar-copy-paste popularity was classified as not popular.
We found that fullcalendar-copy-paste demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.