Merge pull request #23332 from darrick/dupeQuery
[civicrm-core.git] / ang / resetLocationProviderHashPrefix.js
CommitLineData
6e78c430
CW
1(function(angular, $, _) {
2
3 // dev/core#1818 use angular 1.5 default of # instead of 1.6+ default of #!
4 angular.module('ng')
5 .config(['$locationProvider', function($locationProvider) {
6 $locationProvider.hashPrefix('');
7 }]);
8
9})(angular, CRM.$, CRM._);