From eaa3d0ea903950c1364b48319d6e0c07c35ab99d Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Sun, 9 Nov 2014 12:36:41 +0900 Subject: [PATCH] Styling --- client/html/index.html | 4 ++-- client/scripts/application.js | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/client/html/index.html b/client/html/index.html index f0533c8..806c75a 100644 --- a/client/html/index.html +++ b/client/html/index.html @@ -19,8 +19,8 @@
Visualizer -
- +
+
diff --git a/client/scripts/application.js b/client/scripts/application.js index e8b5713..2de4ceb 100644 --- a/client/scripts/application.js +++ b/client/scripts/application.js @@ -177,12 +177,13 @@ } function setCustomized(customized) { - $('#forget').prop('disabled', customized); if (customized) { $('#customized').show(); + $('#forget').hide(); } else { $('#customized').hide(); + $('#forget').show(); } }