Commit e0abf20d1f26eec2ff28b23c27d0cae5d5eb702a
1 parent
27c175f0
Exists in
master
and in
2 other branches
Added new string to change on menu hover
Showing
1 changed file
with
5 additions
and
3 deletions
Show diff stats
theme.js
... | ... | @@ -4,12 +4,14 @@ |
4 | 4 | 'Comunicação': 'colaborativa', |
5 | 5 | 'Experiência': 'colaborativa', |
6 | 6 | 'Convidados': 'confirmados', |
7 | - 'Arena': 'diálogos sociais' | |
7 | + 'Arena': 'diálogos sociais', | |
8 | + 'Como Chegar': 'mais informações' | |
8 | 9 | } |
9 | 10 | |
10 | 11 | var $specialCases = { |
11 | 12 | 'case': 'change', |
12 | - 'diálogos sociais': 'letter-spacing' | |
13 | + 'diálogos sociais': 'letter-spacing', | |
14 | + 'mais informações': 'letter-spacing' | |
13 | 15 | } |
14 | 16 | |
15 | 17 | var before; |
... | ... | @@ -38,7 +40,7 @@ |
38 | 40 | } |
39 | 41 | ); |
40 | 42 | |
41 | - jQuery('.link-list-block').first().wrap("<div class='colored-links'></div>"); | |
43 | + jQuery('.link-list-block').wrap("<div class='colored-links'></div>"); | |
42 | 44 | |
43 | 45 | jQuery(".box-2 .link-list-block .block-title").click(function(){ |
44 | 46 | jQuery(this).parent().children("ul").stop().slideToggle(); | ... | ... |