Commit d3b2f0c1 authored by David Schnur's avatar David Schnur

Added missing radix parameters.

parent e58c20f3
...@@ -646,8 +646,8 @@ More detail and specific examples can be found in the included HTML file. ...@@ -646,8 +646,8 @@ More detail and specific examples can be found in the included HTML file.
function triggerClickHoverEvent(eventname, e) { function triggerClickHoverEvent(eventname, e) {
var offset = plot.offset(); var offset = plot.offset();
var canvasX = parseInt(e.pageX - offset.left); var canvasX = parseInt(e.pageX - offset.left, 10);
var canvasY = parseInt(e.pageY - offset.top); var canvasY = parseInt(e.pageY - offset.top, 10);
var item = findNearbySlice(canvasX, canvasY); var item = findNearbySlice(canvasX, canvasY);
if (options.grid.autoHighlight) { if (options.grid.autoHighlight) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment