horizontal_tab_control

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "horizontal_tab_control".
... in ui_components.naml
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<macro name="horizontal_tab_control" dot_parameter="horizontal_tabs" parameters="is_live">
    <n.put_in_head.>
        <script src="[n.tabs_library_path/]" type="text/javascript"></script>
        <style type="text/css">
            div.tab-contents {
                margin-top:1.5em;
            }
        </style>
    </n.put_in_head.>
    <script type="text/javascript">
        NabbleTabs.startTabControl(<n.hide_null.is_live/>);
        <n.horizontal_tab.><n.horizontal_tabs/></n.horizontal_tab.>
        NabbleTabs.endTabControl();
    </script>
    <n.if.is_null.is_live>
        <then>
            <div class="tab-contents">
                <n.horizontal_tabs/>
            </div>
        </then>
    </n.if.is_null.is_live>
</macro>