aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/ngdoc.js
diff options
context:
space:
mode:
authorBrian Ford2013-11-08 12:22:21 -0800
committerBrian Ford2013-11-08 12:22:21 -0800
commit95102a5afef6a6f36aefd3d3590e305cc972881d (patch)
tree09ad0b7a9cf69f0ef950768b32379f497a92aa18 /docs/src/ngdoc.js
parentae2cdeb2de418bfc59e70cc1885c818864088c57 (diff)
downloadangular.js-95102a5afef6a6f36aefd3d3590e305cc972881d.tar.bz2
chore(docs): allow periods in doc shortNames
Diffstat (limited to 'docs/src/ngdoc.js')
-rw-r--r--docs/src/ngdoc.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/ngdoc.js b/docs/src/ngdoc.js
index b72d5920..5c61ffd3 100644
--- a/docs/src/ngdoc.js
+++ b/docs/src/ngdoc.js
@@ -1108,7 +1108,7 @@ function scenarios(docs){
function metadata(docs){
var pages = [];
docs.forEach(function(doc){
- var path = (doc.name || '').split(/(\.|\:\s*)/);
+ var path = (doc.name || '').split(/(\:\s*)/);
for ( var i = 1; i < path.length; i++) {
path.splice(i, 1);
}