niko
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/components/Ellipsis/index.js
|
|
@ -109,7 +109,7 @@ export default class Ellipsis extends Component { |
|
|
|
|
|
|
|
|
// bisection
|
|
|
// bisection
|
|
|
const len = text.length; |
|
|
const len = text.length; |
|
|
const mid = Math.floor(len / 2); |
|
|
const mid = Math.ceil(len / 2); |
|
|
|
|
|
|
|
|
const count = this.bisection(targetHeight, mid, 0, len, text, shadowNode); |
|
|
const count = this.bisection(targetHeight, mid, 0, len, text, shadowNode); |
|
|
|
|
|
|
|
|
|