diff options
author | raylu <raylu@mixpanel.com> | 2011-07-17 18:00:04 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-07-17 18:15:47 -0700 |
commit | f5e76dbc7caeda4bc4984f00753220fe3bfbb7b2 (patch) | |
tree | 63978e823a10ed6a2ce2a6da37cf079e5fc24b1a /webroot/js/functions.js | |
parent | a4c75f37d8b696af83b14523f0b168d915418c90 (diff) | |
download | otakuhub-f5e76dbc7caeda4bc4984f00753220fe3bfbb7b2.tar.xz |
more view styling
Diffstat (limited to 'webroot/js/functions.js')
-rw-r--r-- | webroot/js/functions.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webroot/js/functions.js b/webroot/js/functions.js index 86f3f3c..5f7d7ae 100644 --- a/webroot/js/functions.js +++ b/webroot/js/functions.js @@ -18,14 +18,14 @@ jQuery(document).ready(function($) { function toggleCast() { var table = $('#cast table'); - if (table.css('display') == 'inline') { + if (table.css('display') == 'block') { table.css('display', 'none'); $('#cast > p > a').text('Cast ↓'); $('#castlink').css('display', 'none'); } else { - table.css('display', 'inline'); + table.css('display', 'block'); $('#cast > p > a').text('Cast ↑'); - $('#castlink').css('display', 'inline'); + $('#castlink').css('display', 'block'); } return false; } |