Blame view

resources/js/review.js 480 Bytes
e77200db5   nologostudio.ru   Initial commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  import './comment/frCommenter';
  import './match/MatchController';
  import './common/directives/motmPoll';
  import './media/mediaViewerComponent';
  import './media/mediaListComponent';
  import './common/directives/formations';
  import matchStats from './match/matchStats';
  import gauge from './match/gauge';
  
  angular.module('fr.review', ['fr.formations'])
      .directive('matchStats', matchStats)
      .directive('gauge', gauge);
  
  angular.module('footyroom').requires.push('fr.review');