Skip to content

Commit 6f5ddd0

Browse files
committed
Fix more bugs
1 parent 7c0e601 commit 6f5ddd0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

resources/common.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -572,8 +572,8 @@ function replaceLoadingPage(reload_container) {
572572
<i class="fa fa-spinner fa-pulse"></i>
573573
</div>
574574
`;
575-
$(reload_container).fadeOut(1000, function() {
576-
$(this).html(loadingPage).fadeIn(200);
575+
$(reload_container).fadeOut(100, function() {
576+
$(this).html(loadingPage).fadeIn(100);
577577
});
578578
}
579579

templates/problem/feed.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</div>
2525
{% if request.user.has_perm('judge.suggest_problem_changes') and feed_type == 'volunteer' %}
2626
<ul style="margin-bottom: 1em; margin-left: auto">
27-
<li><a href="{{url('admin:judge_volunteerproblemvote_changelist')}}">{{_('View your votes')}}</a></li>
27+
<li><a href="{{url('admin:judge_volunteerproblemvote_changelist')}}" target="_blank">{{_('View your votes')}}</a></li>
2828
</ul>
2929
{% endif %}
3030
{% include "problem/feed/items.html" %}

0 commit comments

Comments
 (0)