diff --git a/imports/ui/components/socially/socially.js b/imports/ui/components/socially/socially.js index 7cd7e969e..b064f0dca 100644 --- a/imports/ui/components/socially/socially.js +++ b/imports/ui/components/socially/socially.js @@ -18,4 +18,13 @@ export default angular.module(name, [ template, controllerAs: name, controller: Socially -}); +}) + .config(config); + +function config($locationProvider, $urlRouterProvider) { + 'ngInject'; + + $locationProvider.html5Mode(true); + + $urlRouterProvider.otherwise('/parties'); +}