Skip to content

Commit

Permalink
$mol_number refactor fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
zerkalica committed Nov 24, 2024
1 parent 3e1185f commit f504e62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion number/number.view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ namespace $.$$ {
// Оставляем старое значение в value есть сочетание, приводящие к NaN, например -.
if ( Number.isNaN(Number(next)) ) return next

// Точку в конце поставить нельзя, если precision_view < 1, т.е. разрешены только целые числа.
// Точку в конце поставить нельзя, если precision_view >= 1, т.е. разрешены только целые числа.
if ( next.endsWith('.') && this.precision_view() < 1) return next
if ( next.endsWith('-') ) return next

Expand Down

0 comments on commit f504e62

Please sign in to comment.