Source: party/comments.js

// Generated by CoffeeScript 1.12.7

/**
 * Comments for a party
 * @module
 */
'use strict';
app.directive('partyComments', [
  function() {
    return {
      restrict: 'E',
      templateUrl: 'party/comments.html',
      scope: false,
      link: function($scope) {
        $scope.comments = $scope.party.comments;
      }
    };
  }
]);

//# sourceMappingURL=comments.js.map