SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 7b215af2 authored by Jean-Sébastien Caux's avatar Jean-Sébastien Caux
Browse files

Tweak javascript in org and potfel list pages

parent 1586580b
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,8 @@
<script type="text/javascript">
$(document).ready(function($) {
$(".table-row").click(function() {
window.document.location = $(this).data("href");
var addr = $(this).data("href");
window.open(addr, "_blank");
});
});
</script>
......
......@@ -14,7 +14,8 @@
<script type="text/javascript">
$(document).ready(function($) {
$(".table-row").click(function() {
window.document.location = $(this).data("href");
var addr = $(this).data("href");
window.open(addr, "_blank");
});
});
</script>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment