iosAlertView.alert

    iosAlertView.alert('alert');
          
output: {{output | json}}
iosAlertView.confirm

    iosAlertView.confirm('confirm?');
          
output: {{output | json}}
iosAlertView.prompt

    iosAlertView.prompt({
      text: 'prompt',
      inputType: 'number',
      inputPlaceholder: 'inputPlaceholder'
    });
          
output: {{output | json}}
iosAlertView.remind

    iosAlertView.remind('remind');
          
output: {{output | json}}
iosAlertView

    iosAlertView({
      title: 'insl',
      text: 'text',
      buttons: [
        {
          text: 'label1',
          onClick: function(){
            iosAlertView.alert('label1');
          }
        },
        {
          text: 'label2',
          onClick: function(){
            iosAlertView.alert('label2');
          }
        },
        {
          text: 'label3',
          onClick: function(){
            iosAlertView.remind({
              text: 'label3',
              remindTime: 1000
            });
          }
        }
      ]
    });
          
output: {{output | json}}
Fork me on GitHub