Merge pull request #12125 from MasterOfDeath/expire-share-days-validate
Validate expire share days in settings (issue: #11930)
This commit is contained in:
commit
b449cb35f6
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue