UNPKG

maildev

Version:

SMTP Server and Web Interface for reading and testing emails during development

16 lines (13 loc) 257 B
/* global app */ /** * This compoonent displays an address either with or without a name. */ app.directive('appAddress', function () { return { restrict: 'E', scope: { addr: '=address' }, templateUrl: 'views/address.html' } })