Skip to content

Commit

Permalink
fix: FireFox srcElement not working #17
Browse files Browse the repository at this point in the history
  • Loading branch information
wonknu committed Oct 20, 2016
1 parent 6325056 commit 9711502
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/server/public/scripts/modules/FormCreate.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,16 +154,16 @@ export default class FormCreate {

_btnDuplicateManagerClick(e) {
e.preventDefault()
this._submit('duplicate', e.srcElement)
this._submit('duplicate', e.target)
}

_btnUpdateManagerClick(e) {
e.preventDefault()
this._submit('update', e.srcElement)
this._submit('update', e.target)
}

_btnCreateManagerClick(e) {
e.preventDefault()
this._submit('create', e.srcElement)
this._submit('create', e.target)
}
}

0 comments on commit 9711502

Please sign in to comment.