From 26a48b36f7bbce7a4f18395d7a940c0642c06776 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 20 Feb 2020 14:42:32 +0800 Subject: [PATCH] doc: do not use absolute address use relative address instead, to ease the pain when testing. Signed-off-by: Kefu Chai --- doc/_static/js/ceph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/_static/js/ceph.js b/doc/_static/js/ceph.js index 5374029a0a3..c73805c8708 100644 --- a/doc/_static/js/ceph.js +++ b/doc/_static/js/ceph.js @@ -1,5 +1,5 @@ $(function() { - var releases_url = "https://docs.ceph.com/docs/master/releases.json"; + var releases_url = DOCUMENTATION_OPTIONS.URL_ROOT + '/releases.json'; function show_edit(branch, data) { if (branch) { -- 2.39.5