mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-06 23:51:23 +00:00
31 lines
789 B
JavaScript
31 lines
789 B
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
/**
|
|
* @ngdoc module
|
|
* @name material.components.tabs
|
|
* @description
|
|
*
|
|
* Tabs, created with the `<md-tabs>` directive provide *tabbed* navigation with different styles.
|
|
* The Tabs component consists of clickable tabs that are aligned horizontally side-by-side.
|
|
*
|
|
* Features include support for:
|
|
*
|
|
* - static or dynamic tabs,
|
|
* - responsive designs,
|
|
* - accessibility support (ARIA),
|
|
* - tab pagination,
|
|
* - external or internal tab content,
|
|
* - focus indicators and arrow-key navigations,
|
|
* - programmatic lookup and access to tab controllers, and
|
|
* - dynamic transitions through different tab contents.
|
|
*
|
|
*/
|
|
/*
|
|
* @see js folder for tabs implementation
|
|
*/
|
|
angular.module('material.components.tabs', [
|
|
'material.core'
|
|
]);
|
|
})();
|