Author: almaw Date: Tue May 22 08:46:16 2007 New Revision: 540613 URL: http://svn.apache.org/viewvc?view=rev&rev=540613 Log: Note you should use <div> not <span> in doc - WICKET-506
Modified: incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalWindow.java Modified: incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalWindow.java URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalWindow.java?view=diff&rev=540613&r1=540612&r2=540613 ============================================================================== --- incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalWindow.java (original) +++ incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalWindow.java Tue May 22 08:46:16 2007 @@ -47,6 +47,9 @@ * prevent user from interacting the rest of page (using a mask) until the * window is closed. * <p> + * If you want this to work under IE, don't attach this component to a + * <span> tag, make sure you use a <div>. + * <p> * The window is draggable and optionally resizable. The content can be either * <ul> * <li><b>a component</b> - you need to add the component to modal window @@ -101,7 +104,8 @@ * in a cookie, so that it is preserved when window is close. The name of the * cookie is specified via <code>[EMAIL PROTECTED] #setCookieName(String)}</code>. If * the name is <code>null</code>, position is not stored (initial width and - * height are always used). Default cookie name is null (position is not stored). + * height are always used). Default cookie name is null (position is not + * stored). * <li><code>[EMAIL PROTECTED] #setMinimalWidth(int)}</code> and * <code>[EMAIL PROTECTED] #setMinimalHeight(int)}</code> set the minimal dimensions of * resizable window.