Package com.reveregroup.carousel.client.events

Examples of com.reveregroup.carousel.client.events.PhotoUnfocusEvent


            popup.getElement().getStyle().setProperty("zIndex", "150");
          popup.addCloseHandler(new CloseHandler<PopupPanel>(){
            public void onClose(CloseEvent<PopupPanel> event) {
              popup.hide();
              lightbox.getStyle().setProperty("display", "none");
              PhotoUnfocusEvent evt = new PhotoUnfocusEvent();
              evt.setPhotoIndex(lastFocusEvent.getPhotoIndex());
              evt.setPhoto(lastFocusEvent.getPhoto());
              handlerManager.fireEvent(evt);
            }
          });
        }
       
View Full Code Here

TOP

Related Classes of com.reveregroup.carousel.client.events.PhotoUnfocusEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.