aboutsummaryrefslogtreecommitdiff
path: root/webAO/client.js
diff options
context:
space:
mode:
authorsD <stoned@derpymail.org>2019-12-26 18:13:18 +0100
committersD <stoned@derpymail.org>2019-12-26 18:13:18 +0100
commit6840bc478608079aeb2cdebfa858d14e44deda67 (patch)
tree024a2ffcf685af3bd86f4dceffa1e32022c1cd3c /webAO/client.js
parentb987a8fdd9a6c2a85e95effd73e15746a3ffc495 (diff)
animate evidence
Diffstat (limited to 'webAO/client.js')
-rw-r--r--webAO/client.js12
1 files changed, 4 insertions, 8 deletions
diff --git a/webAO/client.js b/webAO/client.js
index 9ecae71..26181f5 100644
--- a/webAO/client.js
+++ b/webAO/client.js
@@ -1420,17 +1420,13 @@ class Viewport {
// Only def show evidence on right
eviBox.style.right = "1.5em";
eviBox.style.left = "initial";
- $("#client_evi").animate({
- height: "30%",
- opacity: 1
- }, 250);
+ eviBox.style.height = "30%";
+ eviBox.style.opacity = 1;
} else {
eviBox.style.right = "initial";
eviBox.style.left = "1.5em";
- $("#client_evi").animate({
- height: "30%",
- opacity: 1
- }, 250);
+ eviBox.style.height = "30%";
+ eviBox.style.opacity = 1;
}
}