Blame view

resources/js/talkroom.js 805 Bytes
e77200db5   nologostudio.ru   Initial commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  import './common/directives/frDatepicker';
  import frLsMatchGroup from './livescores/frLsMatchGroupDirective';
  import ChatCtrl from './livescores/ChatController';
  import chat from './livescores/ChatService';
  import frLsSubgroup from './livescores/frLsSubgroupDirective';
  import LiveScoresCtrl from './livescores/LiveScoresController';
  import stopEvent from './common/directives/stopEvent';
  import sticky from './common/directives/sticky';
  
  angular.module('fr.talk', ['fr.datepicker', stopEvent])
      .controller('ChatController', ChatCtrl)
      .controller('LiveScoresController', LiveScoresCtrl)
      .directive('sticky', sticky)
      .directive('frLsSubgroup', frLsSubgroup)
      .directive('frLsMatchGroup', frLsMatchGroup)
      .service('chat', chat);
  
  angular.module('footyroom').requires.push('fr.talk');