/bootstrap-tabdrop

A dropdown tab tool for @twitter bootstrap forked from Stefan Petre's (of eyecon.ro), improvements by @jschab

Primary LanguageCSS

bootstrap-tabdrop

A dropdown tab tool for @twitter bootstrap forked from Stefan Petre's (of eyecon.ro), improvements by @jschab and @josephdburdick

The dropdown tab appears when your tabs do not all fit in the same row.

Original site and examples: http://www.eyecon.ro/bootstrap-tabdrop/

Added functionality: Displays the text of an active tab selected from the dropdown list instead of the text option on the dropdown tab (improved).

Added functionality: Allows customizable offset to determine whether tab is overflown or not.

@rkenney fixed the drop down tab not showing the correct text due to the bootstrap event firing after the tabdrop event.

Requirements

Example

No additional HTML needed - the script adds it when the dropdown tab is needed. It also supports tabs that have display: flex.

Direct javascript:

this.$('.nav-tabs').tabdrop();

Use

Call the tabdrop:

.tabdrop();

Call the tabdrop with options:

.tabdrop(options);

Options

text

Type: string

Default: icon

<i class="icon-align-justify"></i>

To change the default value, call

.tabdrop({text: "your text here"});

when initalizing the tabdrop. The displayed value will change when a tab is selected from the dropdown list.

align

Type: string

Default: right

$('.nav-tabs').tabdrop({align: 'left'});

when initalizing the tabdrop. The tab will align on the left or right. This addresses issues with tabs that have display: flex.

offsetTop

Type: integer

Default: 0 To change the default value, call

.tabdrop({offsetTop: N});

when initalizing the tabdrop. This determines when tab has to be included in the dropdown.

usingBootstrap2

Type: bool

Default: false

When tabdrop is used with bootstrap 2 the original click event fires before the shown event of the tab and the active dropdown item is displayed wrong. By setting the option usingBootstrap2 to true the layout call will be ran after the bootstrap event and the correct active dropdown item text will be shown.

$('.nav-tabs').tabdrop({usingBootstrap2: true});

usingBootstrap3

Type: bool

Default: false

When tabdrop is used with bootstrap 3 the original click event fires before the bs.shown tab event and the active dropdown item is displayed wrong. By setting the option usingBootstrap3 to true the layout call will be ran after the bootstrap event and the correct active dropdown item text will be shown.

$('.nav-tabs').tabdrop({usingBootstrap3: true});

Methods

layout

Checks to see if the tabs all fit in one row and displays the text of an active tab in the list:

.tabdrop('layout');