talkroom.js 805 Bytes
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');