eHealthAfrica/direct-delivery-dashboard

View on GitHub
src/app/components/round-search/round-search.directive.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict'

angular.module('eha.round-search')
  .directive('ehaRoundSearch', function () {
    return {
      templateUrl: 'app/components/round-search/round-search.tpl.html',
      scope: {
        ngModel: '=',
        rounds: '=',
        onSelect: '=',
        isLoading: '='
      }
    }
  })