Files
ionic-framework/js/angular/directive/popoverView.js
2015-02-02 20:49:04 -06:00

11 lines
228 B
JavaScript

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