the issue in generate-button resolved

This commit is contained in:
shradha 2018-03-21 21:31:10 +05:30 коммит произвёл Chris H-C
Родитель 75be6f3fb4
Коммит b899fa2552
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -134,6 +134,9 @@ window.addEventListener('load', function () {
_dash.splice(plotIndex, 1);
updatePostData();
tr.parentElement.removeChild(tr);
if (_dash.length == 0) {
$('#generate').setAttribute('disabled',true);
}
});
rmTd.appendChild(rmButton);
tr.appendChild(rmTd);
@ -141,7 +144,9 @@ window.addEventListener('load', function () {
$('.dashboard-plots-body').appendChild(tr);
// now that the dash spec has a plot, user can generate a dash
$('#generate').removeAttribute('disabled');
if (_dash.length != 0) {
$('#generate').removeAttribute('disabled');
}
}
function updateChannels() {