aboutsummaryrefslogtreecommitdiff
path: root/webAO/client.js
diff options
context:
space:
mode:
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;
}
}