SciPost Code Repository

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

Install jQuery migrate plugin and start hunting for bugs; one down

parent 1ae0f031
No related branches found
No related tags found
No related merge requests found
$(document).ready(function($) { $(document).ready(function($) {
$(".table-row").click(function() { $(".table-row").on("click", function() {
window.document.location = $(this).data("href"); window.document.location = $(this).data("href");
}); });
}); });
...@@ -9,7 +9,8 @@ ...@@ -9,7 +9,8 @@
<link href="https://fonts.googleapis.com/css?family=Merriweather+Sans:300,400,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Merriweather+Sans:300,400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="{% static 'scipost/SciPost.css' %}" /> <link rel="stylesheet" type="text/css" href="{% static 'scipost/SciPost.css' %}" />
<link rel="stylesheet" type="text/css" href="{% static 'fa/css/font-awesome.min.css' %}" /> <link rel="stylesheet" type="text/css" href="{% static 'fa/css/font-awesome.min.css' %}" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<script src="https://code.jquery.com/jquery-migrate-3.1.0.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
{% render_bundle 'main' 'css' %} {% render_bundle 'main' 'css' %}
......
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