expire share days in settings validate

Signed-off-by: Rinat Gumirov <rinat.gumirov@mail.ru>
This commit is contained in:
Rinat Gumirov 2018-10-29 23:34:41 +05:00
parent 6ad7f32938
commit 5aca24f3bd
1 changed files with 2 additions and 5 deletions

View File

@ -66,11 +66,8 @@ $(document).ready(function(){
});
});
$('#shareapiExpireAfterNDays').change(function() {
var value = $(this).val();
if (value <= 0) {
$(this).val("1");
}
$('#shareapiExpireAfterNDays').on('input', function() {
this.value = this.value.replace(/\D/g, '');
});
$('#shareAPI input:not(.noJSAutoUpdate)').change(function() {