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:
parent
d80f901828
commit
f2db7b517b
@ -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 () {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user