From ce4e6d49f574952442d815022dc598496591060f Mon Sep 17 00:00:00 2001 From: Daniel Reiter Date: Tue, 2 Aug 2016 11:05:10 -0500 Subject: [PATCH] Fix github line links on jsdoc pages Github line links only work with a capital `L`. --- config/jsdoc/api/template/static/scripts/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/jsdoc/api/template/static/scripts/main.js b/config/jsdoc/api/template/static/scripts/main.js index 4da2f0e998..f87a93c3bd 100644 --- a/config/jsdoc/api/template/static/scripts/main.js +++ b/config/jsdoc/api/template/static/scripts/main.js @@ -88,7 +88,7 @@ $(function () { var link = 'https://github.com/openlayers/ol3/blob/v' + currentVersion + '/' + textParts[0]; el.innerHTML = '' + textParts[0] + ', ' + - '' + + '' + textParts[1] + ''; });