Return to Snippet

Revision: 30004
at August 6, 2010 02:55 by d3developer


Initial Code
public class popup {
 
    public boolean displayPopup {get; set;}
 
    public void closePopup() {
        displayPopup = false;
    }
 
    public void showPopup() {
        displayPopup = true;
    }
}

Initial URL


Initial Description


Initial Title
@tehnrd Native Popup Controller

Initial Tags


Initial Language
Other