From be2118805fad38333c1f7d299d0bbb343f837b1a Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Tue, 20 May 2008 12:43:45 -0700 Subject: [PATCH] Fixed a bug where image preloading loaded incorrect paths for certain images. --- NEWS | 4 ++++ static/css/style.css | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 8772714..4854d65 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +1.3.37: May 20, 2008 + * Fixed a bug where image preloading loaded incorrect paths for + certain images. + 1.3.36: May 19, 2008 * Fix for bug where read-write notebooks that the anonymous user had read-only access to would show up as read-only, even when logged in. diff --git a/static/css/style.css b/static/css/style.css index 00f8481..e468ad5 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -239,13 +239,13 @@ img { #current_notebook_up_hover_preload { height: 0; overflow: hidden; - background-image: url(/static/images/toolbar/arrow_up_hover.png); + background-image: url(/static/images/arrow_up_hover.png); } #current_notebook_down_hover_preload { height: 0; overflow: hidden; - background-image: url(/static/images/toolbar/arrow_down_hover.png); + background-image: url(/static/images/arrow_down_hover.png); } #tree_arrow_hover_preload {