From 4558a65d5d89189cdd9a6e7d5d06793b02077351 Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Mon, 14 Dec 2015 17:17:59 -0800 Subject: [PATCH] Fixed static URL --- modules/shared/templates/common.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/shared/templates/common.html b/modules/shared/templates/common.html index 90294faef..6532c9cfa 100644 --- a/modules/shared/templates/common.html +++ b/modules/shared/templates/common.html @@ -98,7 +98,7 @@ parts = mag.split('-'); var name = parts[0].toLowerCase(); var a = document.createElement('a'); a.setAttribute('href', '/pubs/pc/magazines/' + name + '/' + issue + '/#page-' + page); div3.appendChild(a); - var img = document.createElement('img'); img.setAttribute('src', 'http://static.pcjs.org/pubs/pc/magazines/' + name + '/' + issue + '/thumbs/' + issue + ' ' + page + '.jpeg'); img.setAttribute('width', '200'); a.appendChild(img); + var img = document.createElement('img'); img.setAttribute('src', 'http://archive.pcjs.org/pubs/pc/magazines/' + name + '/' + issue + '/thumbs/' + issue + ' ' + page + '.jpeg'); img.setAttribute('width', '200'); a.appendChild(img); p.parentNode.insertBefore(p2, p.nextSibling); p2.parentNode.insertBefore(div1, p2.nextSibling) }