mirror of
https://github.com/morrisjs/morris.js.git
synced 2024-11-10 21:36:34 +01:00
fixes #217, quick merge please
This commit is contained in:
parent
347533c8dd
commit
a87c47296c
@ -98,8 +98,7 @@ class Morris.Donut extends Morris.EventEmitter
|
||||
|
||||
# @private
|
||||
click: (idx) =>
|
||||
if typeof idx is 'number' then segment = @segments[idx] else segment = idx
|
||||
@fire 'click', segment.idx, segment.data
|
||||
@fire 'click', idx, @data[idx]
|
||||
|
||||
# Select the segment at the given index.
|
||||
select: (idx) =>
|
||||
|
@ -1563,13 +1563,7 @@
|
||||
};
|
||||
|
||||
Donut.prototype.click = function(idx) {
|
||||
var segment;
|
||||
if (typeof idx === 'number') {
|
||||
segment = this.segments[idx];
|
||||
} else {
|
||||
segment = idx;
|
||||
}
|
||||
return this.fire('click', segment.idx, segment.data);
|
||||
return this.fire('click', idx, this.data[idx]);
|
||||
};
|
||||
|
||||
Donut.prototype.select = function(idx) {
|
||||
|
2
morris.min.js
vendored
2
morris.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user