This commit is contained in:
Shavindri 2016-10-11 11:16:50 +05:30
commit 9ceb031677
2 changed files with 4 additions and 0 deletions

View File

@ -92,6 +92,7 @@ $(document).ready(function () {
$("a#save-policy-priorities-success-link").click(function () {
hidePopup();
});
$(applyChangesBtn).prop("disabled", false);
}
},
// on error

View File

@ -22,6 +22,7 @@ var sortableListFunction = (function () {
var sortableElem = '.wr-sortable',
sortUpdateBtn = '#sortUpdateBtn',
applyChangesBtn = '#applyChangesBtn',
sortableElemList = [],
sortedIDs,
currentElemId,
@ -103,6 +104,7 @@ var sortableListFunction = (function () {
insertBefore('span[place="place_' + newValue + '"]');
}
$(sortUpdateBtn).prop('disabled', false);
$(applyChangesBtn).prop('disabled', true);
sortedIDs = $(sortableElem).sortable('toArray');
addSortableIndexNumbers();
}
@ -126,6 +128,7 @@ var sortableListFunction = (function () {
sortedIDs = $(this).sortable('toArray');
addSortableIndexNumbers();
$(sortUpdateBtn).prop('disabled', false);
$(applyChangesBtn).prop('disabled', true);
}
});
$(sortableElem).disableSelection();