blob: f45ab90f621796319d9bbfa7099f080de4282ccd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
$(function(){
$('div.d, div.f').click(function (e) {
if (e.target !== this) return;
$(this).toggleClass('hide');
e.preventDefault();
e.stopPropagation();
});
$('span.params, span.return').click(function (e) {
if (e.target !== this) return;
$(this).toggleClass('short');
e.preventDefault();
e.stopPropagation();
});
$('#internal').change(function(){
$('div.i').toggle();
});
$('span.name').click(function(e){
if (e.target !== this) return;
var $fn = $(this);
var name = $(this).text();
$("span.name:contains('"+name+"')").closest('div.f').toggleClass('hide');
e.preventDefault();
e.stopPropagation();
});
});
|