mixin/polyfill.php - Import. Update comments.
[civicrm-core.git] / ang / resetLocationProviderHashPrefix.js
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._);