summaryrefslogtreecommitdiffstats
path: root/webroot/js/functions.js
diff options
context:
space:
mode:
authorraylu <raylu@mixpanel.com>2011-07-17 18:00:04 -0700
committerraylu <raylu@mixpanel.com>2011-07-17 18:15:47 -0700
commitf5e76dbc7caeda4bc4984f00753220fe3bfbb7b2 (patch)
tree63978e823a10ed6a2ce2a6da37cf079e5fc24b1a /webroot/js/functions.js
parenta4c75f37d8b696af83b14523f0b168d915418c90 (diff)
downloadotakuhub-f5e76dbc7caeda4bc4984f00753220fe3bfbb7b2.tar.xz
more view styling
Diffstat (limited to 'webroot/js/functions.js')
-rw-r--r--webroot/js/functions.js6
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;
}