/* * tabs_core.js */ var el; (function($) { module("tabs: core"); test('navigation markup', function() { el = $('#tabs3').tabs(); ok($('#tabs3-list').hasClass('ui-tabs-nav'), 'custom markup; allow list to be any descendant'); el.tabs('destroy'); el = $('#tabs4').tabs(); ok($('#tabs4-list').hasClass('ui-tabs-nav'), 'first list found becomes nav - ul'); el.tabs('destroy'); el = $('#tabs4a').tabs(); ok($('#tabs4a-list').hasClass('ui-tabs-nav'), 'first list found becomes nav - ol'); el.tabs('destroy'); el = $('#tabs5').tabs(); ok($('#tabs5-list').hasClass('ui-tabs-nav'), 'empty list can be used'); el.tabs('destroy'); }); test('ajax', function() { expect(4); stop(); el = $('#tabs2'); el.tabs({ selected: 2, load: function() { // spinner: default spinner setTimeout(function() { equals($('li:eq(2) > a > span', el).length, 1, "should restore tab markup after spinner is removed"); equals($('li:eq(2) > a > span', el).html(), '3', "should restore tab label after spinner is removed"); el.tabs('destroy'); el.tabs({ selected: 2, spinner: '', load: function() { // spinner: image equals($('li:eq(2) > a > span', el).length, 1, "should restore tab markup after spinner is removed"); equals($('li:eq(2) > a > span', el).html(), '3', "should restore tab label after spinner is removed"); start(); } }); }, 1); } }); }); })(jQuery); Vaadin 6, 7, 8 is a Java framework for modern Java web applications: https://github.com/vaadin/frameworkwww-data
summaryrefslogtreecommitdiffstats
path: root/documentation/themes/themes-overview.asciidoc
blob: 05005ab83b3ea5153227f19340c12f347e386d17 (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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77