Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 95102a5

Browse files
committed
chore(docs): allow periods in doc shortNames
1 parent ae2cdeb commit 95102a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/ngdoc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@ function scenarios(docs){
11081108
function metadata(docs){
11091109
var pages = [];
11101110
docs.forEach(function(doc){
1111-
var path = (doc.name || '').split(/(\.|\:\s*)/);
1111+
var path = (doc.name || '').split(/(\:\s*)/);
11121112
for ( var i = 1; i < path.length; i++) {
11131113
path.splice(i, 1);
11141114
}

0 commit comments

Comments
 (0)