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:
William Desportes 2020-02-23 15:23:59 +01:00
commit dc9a8dd77e
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 () {