diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-03-02 15:22:19 +0100 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-03-02 15:22:19 +0100 |
commit | 96d7a97d80f882111e435e98c6965ad999596b52 (patch) | |
tree | 0f2277732a6aea1a5739a02a09d611bdf3bfda29 /js | |
parent | 7c72a4efe48149c20b9a3e8bb7e547214301a9f3 (diff) |
Minor HTML and CSS cleanups
Diffstat (limited to 'js')
-rw-r--r-- | js/codeq/problem_list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/codeq/problem_list.js b/js/codeq/problem_list.js index 268276f..7f1343d 100644 --- a/js/codeq/problem_list.js +++ b/js/codeq/problem_list.js @@ -318,7 +318,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ problem_ids = groups[group].filter(function (pid) { return pid in attempts }), link; if (problem_ids.length > 0) { - var link = $('<a class="view-solutions"><span class="glyphicon glyphicon-download-alt"></span></a>') + var link = $('<a href="#" class="view-solutions"><span class="glyphicon glyphicon-download-alt"></span></a>') .on('click', function (e) { e.preventDefault(); codeq.globalStateMachine.transition('solutions', problem_ids); |