Browse Source

Merge branch 'DIV-956'

pull/160/head
Charles Shin 6 years ago
parent
commit
d16b3fda2e
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      edivorce/apps/core/static/js/main.js

+ 5
- 1
edivorce/apps/core/static/js/main.js View File

@ -1236,4 +1236,8 @@ $('.no-collapse').on('click', function (e) {
});
// Insert default value to number fields
$('.number-field-default-zero').val('0');
$('.number-field-default-zero').each(function() {
if($(this).val() === '') {
$(this).val('0');
}
});

Loading…
Cancel
Save