Fix github line links on jsdoc pages

Github line links only work with a capital `L`.
This commit is contained in:
Daniel Reiter
2016-08-02 11:05:10 -05:00
parent e39199f97a
commit ce4e6d49f5

View File

@@ -88,7 +88,7 @@ $(function () {
var link = 'https://github.com/openlayers/ol3/blob/v' + currentVersion + '/' +
textParts[0];
el.innerHTML = '<a href="' + link + '">' + textParts[0] + '</a>, ' +
'<a href="' + link + textParts[1].replace('line ', '#l') + '">' +
'<a href="' + link + textParts[1].replace('line ', '#L') + '">' +
textParts[1] + '</a>';
});