mirror of
https://github.com/morrisjs/morris.js.git
synced 2024-11-11 05:46:37 +01:00
replace array.filter with list comprehension
This commit is contained in:
parent
370edd2e2e
commit
ee6cbd8eac
@ -86,7 +86,8 @@ class Morris.Line extends Morris.Grid
|
|||||||
@paths = for i in [0...@options.ykeys.length]
|
@paths = for i in [0...@options.ykeys.length]
|
||||||
smooth = @options.smooth is true or @options.ykeys[i] in @options.smooth
|
smooth = @options.smooth is true or @options.ykeys[i] in @options.smooth
|
||||||
coords = ({x: r._x, y: r._y[i]} for r in @data )
|
coords = ({x: r._x, y: r._y[i]} for r in @data )
|
||||||
coords = coords.filter((c)-> c.y != null ) if @options.continuousLine
|
coords = (c for c in coords when c.y != null) if @options.continuousLine
|
||||||
|
|
||||||
if coords.length > 1
|
if coords.length > 1
|
||||||
@createPath coords, smooth
|
@createPath coords, smooth
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user