Skip to content

Commit ba6a6b8

Browse files
authored
remove extra quotes from search links (#79)
1 parent 4dd5ad1 commit ba6a6b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ui/js/code.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -622,15 +622,15 @@ var pcminer = (function () {
622622
text +=
623623
"<a href='https://google.com/search?q=" +
624624
encodeForUrl(list[i].author) +
625-
'"\' target="_blank">Google</a><br>';
625+
'\' target="_blank">Google</a><br>';
626626
text +=
627627
"<a href='https://scholar.google.com/scholar?q=author%3A\"" +
628628
encodeForUrl(list[i].author) +
629-
'"\' target="_blank">Google Scholar</a><br>';
629+
'\' target="_blank">Google Scholar</a><br>';
630630
text +=
631631
"<a href='https://google.com/search?q=" +
632632
encodeForUrl(list[i].author + " dblp") +
633-
'"\' target="_blank">DBLP (via Google)</a><br>';
633+
'\' target="_blank">DBLP (via Google)</a><br>';
634634

635635
var arr = new Array();
636636
for (var j = 0; j < list[i].publications.length; j++) {

0 commit comments

Comments
 (0)