We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b1dc425 + 2e8600c commit 39525f1Copy full SHA for 39525f1
hashtagsv2/graphs/templates/graphs/graph.html
@@ -219,7 +219,6 @@ <h1>
219
</div>
220
221
<hr>
222
- <script> var url_param = '{{ query_string }}'; </script>
223
<script src="{% static 'js/graph.js' %}"></script>
224
{% endif %}
225
hashtagsv2/hashtags/static/js/graph.js
@@ -12,6 +12,7 @@ url_string = window.location.href;
12
var url = new URL(url_string);
13
var project = url.searchParams.get("project");
14
var user = url.searchParams.get("user");
15
+var url_param = url.searchParams.toString();
16
17
// Hide top projects section when filtering on it
18
if (project!=="" && project!==null){
0 commit comments