
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
angular-ui-tab-scroll
Advanced tools
A scrollable tab plugin intended for scrolling UI Bootstrap tabset.
A scrollable tab plugin intended for scrolling UI Bootstrap tabset.
Here is a working demo : http://plnkr.co/edit/YJNDaQ?p=preview
angular-ui-tab-scroll.js and angular-ui-tab-scroll.css in your page.ui.tab.scroll to your angular module dependencies.<tabset> inside of <scrollable-tabset>, like so:<scrollable-tabset show-tooltips="true">
<tabset>
<tab ng-repeat="x in tabs">...</tab>
</tabset>
</scrollable-tabset>
show-drop-down - whether or not to show the drop-down for navigating the tabs, the drop-down reflects the selected tab and reflect if a tab is disabled. default is true.show-tooltips - whether or not to show tooltips on the scroll buttons. default is true.tooltip-left-placement - which tooltip direction to use for the left button tooltip (bottom, top, left, right). default is right.tooltip-right-placement - which tooltip direction to use for the right button tooltip (bottom, top, left, right). default is left.scroll-by - the amount of pixels to offset upon each scroll. default is 50.auto-recalculate - whether or not to watch the tabs collection for changes to initiate a re-calculation. default is false. important! see warning belowdrop-down-header-template-url - set custom header inside the drop-down. default is empty.And additional attributes you can set on an individual tab:
data-tabScrollIgnore - if there is 'data-tabScrollIgnore="true"' on a tab than it will not be shown in the drop-down.data-tabScrollHeading - put this on a tab and the value of it will be the text for this tab's tooltip and drop-down item.Attributes can be directly set on each directive as DOM attributes
Example:
<scrollable-tabset show-tooltips="true"
tooltip-left-placement="bottom"
scroll-by="150">
<tabset>
<tab ng-repeat="x in tabs">...</tab>
</tabset>
</scrollable-tabset>
Or, they can be configured globally for all your scrollable-tabset directives, by using the scrollableTabsetConfigProvider, in the config section of your app.
Example:
angular.module('yourApp', [])
.config(['scrollableTabsetConfigProvider', function(scrollableTabsetConfigProvider){
scrollableTabsetConfigProvider.setShowTooltips(false);
scrollableTabsetConfigProvider.setScrollBy('20');
//...set other properties here
}]);
This way, you can keep the directive usage simple and consistent across all your html.
Important Notes:
auto-recalculate with caution! - when set to true a watcher is added to the collection of tabs, and watcher are costly on performance! it is better to call doRecalculate() when needed. use this option only on small applications.there is an exposed api, with it you can call:
doRecalculate() - force a re-calculation of the scroll, this will calculate if the scroll buttons are needed and which to enable\disable. usually needed after a tabs are added or removed.scrollTabIntoView() - scroll the selected tab into center of view. or if you want to scroll to a specific tab index:scrollTabIntoView(number) - scroll the tab index into center of view.you can use the default style by referencing angular-ui-tab-scroll.css, or you can chose to use the alternative customized flat style by referencing the supplied angular-ui-tab-scroll-flat.css.
both files are the result of a transpiled scss, which are also included in this package.
if you intend to have your own design i highly recommend you start with angular-ui-tab-scroll-flat.scss with it you can unleash the power of scss&css.
to change the icons on the buttons you simply need to override the relevant button's css with your own css
Example:
.right-nav-button:before{
font-family: 'Glyphicons Halflings';
content: '\e080';
}
the drop-down can be given a class by using the drop-down-class property.
the drop-down menu can be given a class by using the drop-down-menu-class property.
the drop-down menu header can be given a class by using the drop-down-header-class property.
FAQs
A scrollable tab plugin intended for scrolling UI Bootstrap tabset.
We found that angular-ui-tab-scroll demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.