indexiatech / ember-idx-modal

Ember Indexia Modal
http://indexiatech.github.io/ember-idx-modal/#/gettingstarted
Apache License 2.0
17 stars 13 forks source link

em-modal-toggler is submitting the form. #6

Closed jackmatt2 closed 9 years ago

jackmatt2 commented 9 years ago

When I press the toggler, my form is submitted and a "submit" action is sent. I already have an actions for this so it is causing a conflict., it would be better if the type was type="button" so this did not happen.

{{#em-modal-toggler class="btn btn-danger pull-right" modal-id="modal-delete"}}Delete{{/em-modal-toggler}}

em-modal-confirm.hbs

export default Em.Component.extend(WithConfigMixin, StyleBindingsMixin, {
  attributeBindings: ['disabled', 'type'],
  tagName: 'button',
  classNameBindings: ['styleClasses'],

  type : "button",

  ...