From 156f0f47a3d9723f42b401f32d67d7f3b43424a5 Mon Sep 17 00:00:00 2001 From: "Rob G. Healey" Date: Fri, 10 Feb 2012 23:46:58 +0000 Subject: [PATCH] Moved javascript files from the js directory to the scripts directory. svn: r18854 --- src/plugins/webreport/NarrativeWeb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index fec5005ea..bdaf49716 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -4533,7 +4533,7 @@ class SourcePage(BasePage): head += Html("link", href = url, type = "text/css", media = "screen", rel = "stylesheet") # add javascript code to handle if the user's browser is IE6? - fname = "/".join(["js", "jquery-1.7..min.js"]) + fname = "/".join(["scripts", "jquery-1.7..min.js"]) url = self.report.build_url_fname(fname, None, self.up) head += Html("script", src = url, type = "text/javascript", language = "javascript", inline = True) @@ -7116,7 +7116,7 @@ class NavWebReport(Report): # copy jquery javascript file for use in the Drop Down Citations section... fname = CSS["DropDown-Citations"]["javascript"] - self.copy_file(fname, "jquery-1.7.min.js", "js") + self.copy_file(fname, "jquery-1.7.min.js", "scripts") # copy narrative-maps Style Sheet if Place or Family Map pages are being created? if (self.placemappages or self.familymappages):