UNPKG

client-ui

Version:

Testing implementation of nodeJs Backend, angular frontend, and hopefully in a way that this can be deployed to s3/cloudfront

16 lines (12 loc) 307 B
/* global angular */ (function () { "use strict"; function chatFooter() { return { restrict: "EA", templateUrl: "chat-footer/chat-footer.html" }; } angular.module("clientApp").directive("chatFooter", chatFooter); chatFooter.$inject = []; })();