Merge #15423 - Fix #13371 - Designer - automatically toggle the radio button to "Create a page and save it" when the use clicks the bottom text box.
Pull-request: #15423 Fixes: #13371 Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
commit
dc9a8dd77e
@ -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