Skip to content

Commit

Permalink
0.10.0-beta.13
Browse files Browse the repository at this point in the history
Fixed:
- Tooltip error when pointer leaves chart (Firefox).
- Export plug-in global depencency (minified build).
  • Loading branch information
alexanderby committed Jan 28, 2017
1 parent e6616ca commit be6be14
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "taucharts",
"version": "0.10.0-beta.12",
"version": "0.10.0-beta.13",
"homepage": "https://github.com/TargetProcess/tauCharts",
"description": "D3 based data-focused charting library",
"keywords": [
Expand Down
6 changes: 3 additions & 3 deletions build/development/tauCharts.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! taucharts - v0.10.0-beta.12 - 2017-01-26
/*! taucharts - v0.10.0-beta.13 - 2017-01-28
* https://github.com/TargetProcess/tauCharts
* Copyright (c) 2017 Taucraft Limited; Licensed Apache License 2.0 */
(function webpackUniversalModuleDefinition(root, factory) {
Expand Down Expand Up @@ -348,7 +348,7 @@ return /******/ (function(modules) { // webpackBootstrap
}]));

/* global VERSION:false */
var version = ("0.10.0-beta.12");
var version = ("0.10.0-beta.13");
exports.GPL = _tau.GPL;
exports.Plot = _tau2.Plot;
exports.Chart = _tau3.Chart;
Expand Down Expand Up @@ -6775,7 +6775,7 @@ return /******/ (function(modules) { // webpackBootstrap
};
svg.on('mousemove', wrapEventHandler(handler));
svg.on('click', wrapEventHandler(handler));
svg.on('mouseleave', wrapEventHandler(function () {
svg.on('mouseleave', wrapEventHandler(function (event) {
if (window.getComputedStyle(_this5._svg).pointerEvents !== 'none') {
_this5.select(function () {
return true;
Expand Down
2 changes: 1 addition & 1 deletion build/production/tauCharts.dark.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/production/tauCharts.default.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/production/tauCharts.min.css

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions build/production/tauCharts.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "taucharts",
"version": "0.10.0-beta.12",
"version": "0.10.0-beta.13",
"homepage": "https://github.com/TargetProcess/tauCharts",
"description": "D3 based data-focused charting library",
"author": {
Expand Down

0 comments on commit be6be14

Please sign in to comment.