UNPKG

angular-material-npfixed

Version:

The Angular Material project is an implementation of Material Design in Angular.js. This project provides a set of reusable, well-tested, and accessible Material Design UI components. Angular Material is supported internally at Google by the Angular.js, M

14 lines (12 loc) 286 B
angular .module('material.components.tabs') .directive('mdTabItem', MdTabItem); function MdTabItem () { return { require: '^?mdTabs', link: function link (scope, element, attr, ctrl) { if (!ctrl) return; ctrl.attachRipple(scope, element); } }; }