Commit 130e2414c484642fdd382d03f6dc3cf3bd51e370

Authored by totoro
1 parent afb139a2

Fix the sorting order of tab in jquery_tab which made sometime issue in js include order

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
web/jQuery/CXM_jquery_tabs.anubis
@@ -41,7 +41,7 @@ define HTML_Partial_Content @@ -41,7 +41,7 @@ define HTML_Partial_Content
41 { 41 {
42 [ ] then 42 [ ] then
43 partial_content( 43 partial_content(
44 - reverse(tabs_heads), 44 + tabs_heads,
45 sequence([ 45 sequence([
46 literal("<ul>"+tabs_titles+"</ul>"), 46 literal("<ul>"+tabs_titles+"</ul>"),
47 sequence(reverse(tabs_contents)) 47 sequence(reverse(tabs_contents))
@@ -63,7 +63,7 @@ define HTML_Partial_Content @@ -63,7 +63,7 @@ define HTML_Partial_Content
63 . 63 .
64 tabs_contents 64 tabs_contents
65 ], 65 ],
66 - tags + tabs_heads, 66 + tabs_heads + tags ,
67 count+1 67 count+1
68 ) 68 )
69 } 69 }