knguyen     2004/10/27 11:36:59 CEST

  Modified files:        (Branch: JAHIA-4-0-BRANCH)
    src/views/jsp/jahia/htmleditors/htmlarea/popups fullscreen.jsp 
  Log:
  - fix for JAHIA-165 : fullscreen event issue
  
  Revision  Changes    Path
  1.1.2.2   +1 -1      
jahia/src/views/jsp/jahia/htmleditors/htmlarea/popups/fullscreen.jsp
http://jahia.mine.nu:8080/cgi-bin/cvsweb.cgi/jahia/src/views/jsp/jahia/htmleditors/htmlarea/popups/fullscreen.jsp.diff?r1=1.1.2.1&r2=1.1.2.2&f=h
  
  
  
  Index: fullscreen.jsp
  ===================================================================
  RCS file: 
/home/cvs/repository/jahia/src/views/jsp/jahia/htmleditors/htmlarea/popups/Attic/fullscreen.jsp,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- fullscreen.jsp    26 Oct 2004 16:55:03 -0000      1.1.2.1
  +++ fullscreen.jsp    27 Oct 2004 09:36:59 -0000      1.1.2.2
  @@ -42,7 +42,7 @@
   
   function _CloseOnEsc(ev) {
        ev || (ev = window.event);
  -     if (ev.keyCode == 27) {
  +     if (ev && ev.keyCode == 27) {
                // update_parent();
                window.close();
                return;
  

Reply via email to