projects
/
civicrm-core.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #22164 from eileenmcnaughton/parent
[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
.
_
);