Files
ionic-framework/js/angular/directive/popoverView.js
2014-07-31 14:43:29 -05:00

11 lines
245 B
JavaScript

IonicModule
.directive('ionPopoverView', function() {
return {
restrict: 'E',
compile: function(element) {
element.append( angular.element('<div class="popover-arrow"></div>') );
element.addClass('popover');
}
};
});