Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fractastical/989789 to your computer and use it in GitHub Desktop.
Save fractastical/989789 to your computer and use it in GitHub Desktop.
@tehnrd Native Popup Controller
public class popup {
public boolean displayPopup {get; set;}
public void closePopup() {
displayPopup = false;
}
public void showPopup() {
displayPopup = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment