claude-code-kanban 2.3.1 → 2.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/app.js +4 -0
package/package.json
CHANGED
package/public/app.js
CHANGED
|
@@ -5290,6 +5290,10 @@ window.addEventListener('popstate', () => {
|
|
|
5290
5290
|
e.preventDefault();
|
|
5291
5291
|
window.parent?.postMessage({ type: 'hub:keydown', key: e.key }, '*');
|
|
5292
5292
|
}
|
|
5293
|
+
if (e.altKey && !e.ctrlKey && !e.shiftKey && !e.metaKey && /^[1-9]$/.test(e.key)) {
|
|
5294
|
+
e.preventDefault();
|
|
5295
|
+
window.parent?.postMessage({ type: 'hub:keydown', key: e.key }, '*');
|
|
5296
|
+
}
|
|
5293
5297
|
});
|
|
5294
5298
|
})();
|
|
5295
5299
|
|