-
Notifications
You must be signed in to change notification settings - Fork 1
/
notice.txt
63 lines (60 loc) · 1.9 KB
/
notice.txt
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// > Tabs Definition as JSONObj
var tabsDefinition = [
'Tipps' : {
'__attr__' : {
'class' : 'some-class onhover',
'id' : 'some-id',
'data-foo' : 'foo'
}
'__isOpen__' : true,
'__content__ : new Tippsview(item)
}
'Bewertungen',
'Informationen' : {
'__attr__' : {
'class' : 'some-class1 some-class2 subtav-container'
},
'__sub-tabs__' : {
'Fahrzeug' : {
'__attr__' : {
'class' : 'some-class onhover',
'id' : 'some-id',
'data-foo' : 'foo',
}
'__content__ : function(){var v = new Fahrzeugview(item); return v.render(); }
},
'Vermieter' : {
'__attr__' : {
'class' : 'some-class onhover',
'id' : 'some-id',
'data-foo' : 'foo',
},
'__isOpen__' : true,
'__content__ : new Vermieterview(item)
},
'Station : {
'__attr__' : {
'class' : 'some-class onhover',
'id' : 'some-id',
'data-foo' : 'foo',
}
'__content__ : new Stationview(item)
}
}
},
'__empty__' : {
'__attr__' : {
class : 'show-hide-icon'
data-taby-toggle-visibility : '',
}
}
]
var tabsDefinition = [
'Tipps' : function(){...},
'Bewertung' : function(){var v = new Fahrzeugview(item); return v.render();},
'Informationen' : [
'Fahrzeug' : function(){var v = new Fahrzeugview(item); return v.render();},
'Vermieter' : function(){var v = new Viewmierteriew(item); return v.render();},
'Station' : function(){var v = new Viewmierteriew(item); return v.render();},
},
]