We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8569e2f commit f82deaeCopy full SHA for f82deae
files/fabricweb/ux.js
@@ -71,6 +71,12 @@ function mouseUp() {
71
}
72
73
function init() {
74
+ document.addEventListener('keydown', function (event) {
75
+ if (event.ctrlKey && event.key === 'v') {
76
+ showInsertHint();
77
+ }
78
+ });
79
+
80
var container_element = document.querySelector('.draggable');
81
var draggie = new Draggabilly(container_element, {
82
axis: 'x',
0 commit comments