From 3a7dda5099f55c0676096dfebcea6398035311c3 Mon Sep 17 00:00:00 2001 From: Luke Faraone Date: Wed, 3 Oct 2012 13:56:17 -0400 Subject: [PATCH] Replace usage of send_status.toggle() with the more clear .show() (imported from commit 0593222b16bf845b7bcd9075d02c156a05764c12) --- zephyr/static/js/zephyr.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zephyr/static/js/zephyr.js b/zephyr/static/js/zephyr.js index 98533896a5..25d7d447a9 100644 --- a/zephyr/static/js/zephyr.js +++ b/zephyr/static/js/zephyr.js @@ -282,7 +282,7 @@ $(function () { // The class doesn't exist okay = false; send_status.removeClass(status_classes); - send_status.toggle(); + send_status.show(); $('#class-dne-name').text(zephyr_class); $('#class-dne').show(); $('#create-it').focus(); @@ -302,7 +302,7 @@ $(function () { // You're not subbed to the class okay = false; send_status.removeClass(status_classes); - send_status.toggle(); + send_status.show(); $('#class-nosub-name').text(zephyr_class); $('#class-nosub').show(); $('#sub-it').focus();