How to make UI bootstrap existing tab heading section to the drop down in the mobile view.
HTML:
<div>
<div ng-controller="TabsDemoCtrl">
<hr />
<tabset justified="true">
<tab ng-repeat="tab in tabs" heading="{{tab.title}}">
<div class="tab-content">
{{tab.content}}
</div></tab>
</tabset>
<hr />
</div>
CSS:
.tab-content {
text-align: center;
background-color: #eef0f1;
padding-top: 35px;
font-weight: 700;
}
JS Fiddle Link :
Currently the UI Tab view changes to the vertical lines in the mobile view (how can i hack the current UI tab to make it drop down (only in the mobile view)