UNPKG

@timshel_npm/maildev

Version:

SMTP Server with async API and Web Interface for viewing 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' } })