From d9355432d7e85043e13ee41755fd52adb15bdbb8 Mon Sep 17 00:00:00 2001 From: bsag Date: Wed, 2 Nov 2005 09:08:24 +0000 Subject: [PATCH] I'm a loon. As perlguy pointed out in #151, Ajax stuff was completely broken in the last revision (on Safari as well as IE6). I could have sworn that I'd tested it, but obviously not. It turns out that you need to call prototype.js as well as scriptaculous.js, or nothing works at all (scriptaculous then calls the other scripts like control, effect etc.). Fixes #151. git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@160 a4c988fc-2ded-0310-b66e-134b36920a42 --- tracks/app/views/layouts/standard.rhtml | 1 + 1 file changed, 1 insertion(+) diff --git a/tracks/app/views/layouts/standard.rhtml b/tracks/app/views/layouts/standard.rhtml index d82e8bb3..33aea985 100644 --- a/tracks/app/views/layouts/standard.rhtml +++ b/tracks/app/views/layouts/standard.rhtml @@ -5,6 +5,7 @@ <%= stylesheet_link_tag "standard" %> <%= stylesheet_link_tag "print", :media => "print" %> <%= javascript_include_tag "toggle_notes" %> + <%= javascript_include_tag "prototype" %> <%= javascript_include_tag "scriptaculous" %> <%= stylesheet_link_tag 'calendar-system.css' %> <%= javascript_include_tag 'calendar', 'calendar-en', 'calendar-setup' %>