Tiny fix to make Edge happy and display cancellation-slider

This commit is contained in:
Martin Gross
2020-03-31 14:04:57 +02:00
parent d23e53873f
commit db76b9b0ef

View File

@@ -341,7 +341,7 @@ $(function () {
var newinp = parseFloat(prompt(gettext("Please enter the amount the organizer can keep."), cancel_fee_slider.getValue().toString()).replace(',', '.')); var newinp = parseFloat(prompt(gettext("Please enter the amount the organizer can keep."), cancel_fee_slider.getValue().toString()).replace(',', '.'));
cancel_fee_slider.setValue(newinp); cancel_fee_slider.setValue(newinp);
cancel_fee_slider_update(); cancel_fee_slider_update();
} catch { } catch (e) {
} }
}); });
} }