Skip to content

Commit 46cac41

Browse files
committed
removes blinking class on api data load and adds assets directory
1 parent 04d3541 commit 46cac41

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# View crime statistics in the UK!
22
A flask powered app, with data visualisation using D3.
33

4-
![ScreenShot](ScreenShot.png)
4+
![ScreenShot](assets/ScreenShot.png)
File renamed without changes.

src/templates/results.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<body class="body">
1111
<div id="header">
1212
<h2> You are looking at crime stats for: <h2>
13-
<p class="blink_text">{{location}}<p>
13+
<p id="blink" class="blink_text">{{location}}<p>
1414
<div>
1515
<div class="display-flex">
1616
<div id="pie-chart"></div>
@@ -24,6 +24,7 @@ <h2> You are looking at crime stats for: <h2>
2424
d3.json('/data/'+'{{location}}', function(error, data) {
2525
drawPieChart('pie-chart', data);
2626
drawBarChart('bar-chart', data);
27+
document.getElementById("blink").classList.remove("blink_text");
2728
})
2829
</script>
2930
</body>

0 commit comments

Comments
 (0)