We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64a7c75 commit a03787cCopy full SHA for a03787c
Extensions/djMode.js
@@ -178,6 +178,11 @@
178
179
playButton.setAttribute("djmode-injected", "true");
180
playButton.onclick = clickFunc(songURI);
181
+
182
+ cell.parentElement.ondblclick = (event) => {
183
+ clickFunc(songURI)();
184
+ event.stopImmediatePropagation();
185
+ };
186
});
187
188
if (setting.hideControls) {
@@ -222,6 +227,11 @@
222
227
223
228
newButton.onclick = clickFunc(songURI);
224
229
};
230
231
232
233
234
225
235
226
236
237
0 commit comments