diff --git a/frontend/views.py b/frontend/views.py index 1794770f..62a4edb2 100755 --- a/frontend/views.py +++ b/frontend/views.py @@ -116,6 +116,8 @@ def work(request, work_id, action='display'): try: activetab = request.GET['tab'] + if activetab not in ['1', '2', '3', '4']: + activetab = '1'; except: activetab = '1'; diff --git a/static/css/campaign.css b/static/css/campaign.css index 1472bf37..b2b47abd 100755 --- a/static/css/campaign.css +++ b/static/css/campaign.css @@ -92,6 +92,9 @@ #js-leftcol .jsmodule.rounded .jsmod-content span.spacer { visibility: none; } +#js-leftcol .jsmodule.rounded .jsmod-content span.findtheungluers { + cursor: pointer; +} .book-detail { float: left; width: 100%; diff --git a/static/less/campaign.less b/static/less/campaign.less index 3649fbea..26623688 100644 --- a/static/less/campaign.less +++ b/static/less/campaign.less @@ -64,11 +64,16 @@ span { display: inline-block; vertical-align: middle; + + &.spacer { + visibility: none; + } + + &.findtheungluers { + cursor: pointer; + } } - - span.spacer { - visibility: none; - } + } }