From 32d579c45b0fc8a99e4f9b71164415fa09e2d79f Mon Sep 17 00:00:00 2001 From: wbauer Date: Thu, 9 Oct 2008 15:18:40 +0000 Subject: Introduced SL Request parameters to customize Applet layout git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@92 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4 --- BKUOnline/src/main/webapp/appletPage.jsp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'BKUOnline/src/main/webapp/appletPage.jsp') diff --git a/BKUOnline/src/main/webapp/appletPage.jsp b/BKUOnline/src/main/webapp/appletPage.jsp index b9225e56..59dc2ad5 100644 --- a/BKUOnline/src/main/webapp/appletPage.jsp +++ b/BKUOnline/src/main/webapp/appletPage.jsp @@ -25,6 +25,10 @@ +<% int width= session.getAttribute("appletWidth") == null ? 190 : (Integer)session.getAttribute("appletWidth"); + int height=session.getAttribute("appletHeight") == null ? 130 : (Integer)session.getAttribute("appletHeight"); + String backgroundImg = (String) session.getAttribute("appletBackground"); +%>