diff --git a/index.html b/index.html
index 0b438d6..cf6941c 100644
--- a/index.html
+++ b/index.html
@@ -348,8 +348,8 @@
Live A
@@ -365,7 +365,7 @@
Active Projects
-
+
New Project
@@ -430,7 +430,7 @@
Episode Title
-
-
+
Notes
diff --git a/js/app.js b/js/app.js
index 5abcb24..9326b8c 100644
--- a/js/app.js
+++ b/js/app.js
@@ -1326,6 +1326,12 @@ function bindEvents() {
} else if (key === 'b') {
e.preventDefault();
toggleWatchLater(AppState.current);
+ } else if (key === 's') {
+ e.preventDefault();
+ openShare();
+ } else if (key === 'n') {
+ e.preventDefault();
+ openTranscript();
}
}
@@ -1516,6 +1522,7 @@ if (document.readyState === 'loading') {
function openShare() {
if (!DOM.sharePanel) return;
+ if ('vibrate' in navigator) navigator.vibrate(10);
const shareLink = document.getElementById("shareLink");
if (shareLink && AppState.current) {
shareLink.value = "https://www.youtube.com/watch?v=" + AppState.current.id;
@@ -1529,6 +1536,7 @@ function openShare() {
function openTranscript() {
if (!DOM.transcriptPanel) return;
+ if ('vibrate' in navigator) navigator.vibrate(10);
DOM.transcriptPanel.style.display = "block";
DOM.transcriptPanel.setAttribute("aria-hidden", "false");
DOM.body.style.overflow = "hidden";