Sfoglia il codice sorgente

fix selector for clipboard sharing option (#6277)

Clipboard sharing uses  <button> instead of <a>, so the selector does not find it
Jacopo Galati 2 anni fa
parent
commit
30f147410d
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      p/scripts/main.js

+ 1 - 1
p/scripts/main.js

@@ -697,7 +697,7 @@ function auto_share(key) {
 	if (!share) {
 		return;
 	}
-	const shares = share.parentElement.querySelectorAll('.dropdown-menu .item a');
+	const shares = share.parentElement.querySelectorAll('.dropdown-menu .item [data-type]');
 	if (typeof key === 'undefined') {
 		// Display the share div
 		location.hash = share.id;