diff options
author | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2008-05-14 12:05:32 +0000 |
---|---|---|
committer | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2008-05-14 12:05:32 +0000 |
commit | b24d340f8b0dc228f666575afb9f3e608b362da2 (patch) | |
tree | 0cf0c1d652b410c0c4a126163d10cac385d2d863 | |
parent | 817d9d719b497a7682087744c08284e490368253 (diff) | |
download | vaadin-framework-b24d340f8b0dc228f666575afb9f3e608b362da2.tar.gz vaadin-framework-b24d340f8b0dc228f666575afb9f3e608b362da2.zip |
Fixes #1645
svn changeset:4480/svn branch:trunk
-rw-r--r-- | WebContent/reservr.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WebContent/reservr.html b/WebContent/reservr.html index 2ffe0b9b29..07f7ba2562 100644 --- a/WebContent/reservr.html +++ b/WebContent/reservr.html @@ -30,9 +30,9 @@ itmill.toolkitConfigurations = {}; itmill.themesLoaded = {}; document.write('<iframe id="__gwt_historyFrame" style="width:0;height:0;border:0;overflow:hidden" src="javascript:false"></iframe>'); - document.write("<script language='javascript' src='/ITMILL/widgetsets/com.itmill.toolkit.demo.reservation.gwt.ReservationWidgetSet/com.itmill.toolkit.demo.reservation.gwt.ReservationWidgetSet.nocache.js'><\/script>"); + document.write("<script language='javascript' src='ITMILL/widgetsets/com.itmill.toolkit.demo.reservation.gwt.ReservationWidgetSet/com.itmill.toolkit.demo.reservation.gwt.ReservationWidgetSet.nocache.js'><\/script>"); } - itmill.toolkitConfigurations["itmill-ajax-window"] = {appUri:'/Reservr', pathInfo: '/', themeUri:'/ITMILL/themes/reservr'}; + itmill.toolkitConfigurations["itmill-ajax-window"] = {appUri:'../../../Reservr', pathInfo: '/', themeUri:'../../../ITMILL/themes/reservr'}; //]]> </script> <script type="text/javascript"> @@ -41,7 +41,7 @@ var stylesheet = document.createElement('link'); stylesheet.setAttribute('rel', 'stylesheet'); stylesheet.setAttribute('type', 'text/css'); - stylesheet.setAttribute('href', '/ITMILL/themes/reservr/styles.css'); + stylesheet.setAttribute('href', 'ITMILL/themes/reservr/styles.css'); document.getElementsByTagName('head')[0].appendChild(stylesheet); itmill.themesLoaded['reservr'] = true; } |