Fix bug where 'Add' dialog appends to the dom multiple times

This commit is contained in:
Duncan Sommerville 2015-11-12 15:42:41 -05:00
parent 5a573d3d9e
commit 0e74229975
2 changed files with 6 additions and 1 deletions

View file

@ -443,7 +443,10 @@ var AIRTIME = (function (AIRTIME) {
resizable: false,
modal: true,
width: '450px',
height: 129
height: 129,
close: function () {
$(this).remove();
}
});
});
};