Always unbind internal listeners when closing a modal dialog

This commit is contained in:
Frederic Guillot
2017-01-26 22:21:07 -05:00
parent c3d42a21b2
commit a371d53e63
10 changed files with 38 additions and 6 deletions

View File

@@ -42,6 +42,9 @@ KB.component('confirm-buttons', function (containerElement, options) {
this.render = function () {
KB.on('modal.stop', onStop);
KB.on('modal.close', function () {
KB.removeListener('modal.stop', onStop);
});
var element = KB.dom('div')
.attr('class', 'form-actions')