Automatically toggle the radio button to "Create a page and save it" when the use clicks the bottom text box

Signed-off-by: Mohit Kuri <mohit.kuri@research.iiit.ac.in>
This commit is contained in:
Bournvita1998 2019-08-04 01:51:50 +05:30 committed by William Desportes
parent d80f901828
commit f2db7b517b
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889

View File

@ -2128,6 +2128,11 @@ AJAX.registerOnload('designer/move.js', function () {
});
$('#SaveAs').on('click', function () {
DesignerMove.saveAs();
$(document).ajaxStop(function () {
$('#selected_value').on('click', function () {
$('#save_page_new').prop('checked', true);
});
});
return false;
});
$('#delPages').on('click', function () {