From 5b5f971881928553dc8c94b64c895a99d53d1f9a Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Fri, 9 May 2008 20:13:52 +0000 Subject: [PATCH] Preloading note icon for great rendering. --- static/css/style.css | 6 ++++++ view/Front_page.py | 1 + 2 files changed, 7 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index b15b636..4ac539e 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -248,6 +248,12 @@ img { background-image: url(/static/images/tree_arrow_down_hover.png); } +#note_icon_preload { + height: 0; + overflow: hidden; + background-image: url(/static/images/note_icon.png); +} + #note_tree_area { position: fixed; width: 17em; diff --git a/view/Front_page.py b/view/Front_page.py index 0e3c479..84075ed 100644 --- a/view/Front_page.py +++ b/view/Front_page.py @@ -369,5 +369,6 @@ class Front_page( Product_page ): Span( id = u"title_button_preload" ), Span( id = u"bullet_list_button_preload" ), Span( id = u"numbered_list_button_preload" ), + Span( id = u"note_icon_preload" ), ), )