bootstrap-tabdrop

WebJar for bootstrap-tabdrop

License

License

MIT
GroupId

GroupId

org.webjars.bower
ArtifactId

ArtifactId

bootstrap-tabdrop
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

bootstrap-tabdrop
WebJar for bootstrap-tabdrop
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/nwhite89/bootstrap-tabdrop

Download bootstrap-tabdrop

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bower/bootstrap-tabdrop/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>bootstrap-tabdrop</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/bootstrap-tabdrop/
implementation 'org.webjars.bower:bootstrap-tabdrop:1.0.0'
// https://jarcasting.com/artifacts/org.webjars.bower/bootstrap-tabdrop/
implementation ("org.webjars.bower:bootstrap-tabdrop:1.0.0")
'org.webjars.bower:bootstrap-tabdrop:jar:1.0.0'
<dependency org="org.webjars.bower" name="bootstrap-tabdrop" rev="1.0.0">
  <artifact name="bootstrap-tabdrop" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='bootstrap-tabdrop', version='1.0.0')
)
libraryDependencies += "org.webjars.bower" % "bootstrap-tabdrop" % "1.0.0"
[org.webjars.bower/bootstrap-tabdrop "1.0.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

bootstrap-tabdrop

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

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.

Requirements

Example

No additional HTML needed - the script adds it when the dropdown tab is needed.

Using bootstrap-tabdrop.js Call the tab drop via javascript on .nav-tabs and .nav-pills:

$('.nav-pills, .nav-tabs').tabdrop()

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.

Methods

.tabdrop(options)

Initializes an tab drop.

.tabdrop('layout')

Checks if the tabs fit in one single row.

Event

tabdrop.layout.complete

Triggered when the DOM updates are complete. This can be used to manually initialize the dropdown and the contained tabs.

$('.nav-tabs').tabdrop().on('tabdrop.layout.complete', function () {
  
  // initialize dropdown
  $('.dropdown-toggle').dropdown();

  // initialize items
  $('.dropdown-menu a[data-toggle="tab"]').click(function (e) {
    e.stopPropagation();
    e.preventDefault();
    $(this).tab('show');
  });

});

Versions

Version
1.0.0