Commit 80caf84cd1cb071469f8213b032bb8e98a4fe433
1 parent
7317375b
Exists in
master
and in
1 other branch
git-svn-id: https://svn.bento.ifrs.edu.br/default/ASES/ASES%20-%20Web/ASES%20-%2…
…0Web/Fontes/avaliador-web@10633 c2178572-b5ca-4887-91d2-9e3a90c7d55b
Showing
1 changed file
with
23 additions
and
0 deletions
Show diff stats
src/main/webapp/inicial_arquivos/js/detalhesAvaliacao.js
0 → 100644
... | ... | @@ -0,0 +1,23 @@ |
1 | + | |
2 | +$(document).ready(function() | |
3 | + | |
4 | + { | |
5 | + | |
6 | + //voltar Detalhar | |
7 | + $("li #voltar").click(function(){ | |
8 | + parent.history.back(); | |
9 | + return false; | |
10 | + }); | |
11 | + | |
12 | + //fim voltar Detalhar | |
13 | + | |
14 | + | |
15 | + //Alterar a cor de fundo da linha selecionada "Código Fonte" na página de detalhes avaliar | |
16 | + $("#tabelaErros2 a").click(function(){ | |
17 | + | |
18 | + $("a").removeClass("selecionado"); | |
19 | + var id = $(this).attr('href'); | |
20 | + $(id).addClass("selecionado"); | |
21 | + | |
22 | + }); | |
23 | + }); | |
0 | 24 | \ No newline at end of file | ... | ... |