im traying to make a button to shared a info with the windows modal but i dont know how to make in angular
options iphone maybe someone know how to make this.
What do you mean by that? There can be to ways to do this. The first is this:
if your using jquery i suggest doing thing
$("#modalActivator").click(function(){ //modal activator is the id of the button your using to show the modal
$("#modalDiv").show(1000); //modal div is the id of your modal. doesn't have to be modal div.
}
$("#modalDeactivator).click(function(){ //modal deactivator is the close button of your modal.
$("#modalDiv").hide(1000);
}
You didn't have much context to your request so this is the best i can do with the information.