UNPKG

ionic-angular

Version:

[![Circle CI](https://circleci.com/gh/driftyco/ionic.svg?style=svg)](https://circleci.com/gh/driftyco/ionic)

19 lines (17 loc) 357 B
/** * @ngdoc directive * @name ionPane * @module ionic * @restrict E * * @description A simple container that fits content, with no side effects. Adds the 'pane' class to the element. */ IonicModule .directive('ionPane', function() { return { restrict: 'E', link: function(scope, element) { element.addClass('pane'); } }; });