highcharts-rails 4.2.6 → 4.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highcharts JS v4.2.6 (2016-08-02)
2
+ * @license Highcharts JS v4.2.7 (2016-09-21)
3
3
  * Solid angular gauge module
4
4
  *
5
5
  * (c) 2010-2016 Torstein Honsi
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Highcharts JS v4.2.6 (2016-08-02)
2
+ * @license Highcharts JS v4.2.7 (2016-09-21)
3
3
  *
4
4
  * (c) 2014 Highsoft AS
5
5
  * Authors: Jon Arild Nygard / Oystein Moseng
@@ -719,9 +719,11 @@
719
719
  };
720
720
 
721
721
  // Crisp correction
722
- crispCorr = parseInt(pointAttribs['stroke-width'], 10) % 2 / 2;
723
- point.shapeArgs.x -= crispCorr;
724
- point.shapeArgs.y -= crispCorr;
722
+ if (point.shapeArgs) {
723
+ crispCorr = parseInt(pointAttribs['stroke-width'], 10) % 2 / 2;
724
+ point.shapeArgs.x -= crispCorr;
725
+ point.shapeArgs.y -= crispCorr;
726
+ }
725
727
  });
726
728
  // Call standard drawPoints
727
729
  seriesTypes.column.prototype.drawPoints.call(this);
@@ -1,3 +1,3 @@
1
1
  module Highcharts
2
- VERSION = "4.2.6"
2
+ VERSION = "4.2.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: highcharts-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.6
4
+ version: 4.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Per Christian B. Viken
@@ -87,6 +87,7 @@ files:
87
87
  - app/assets/javascripts/highcharts/modules/map.js
88
88
  - app/assets/javascripts/highcharts/modules/no-data-to-display.js
89
89
  - app/assets/javascripts/highcharts/modules/offline-exporting.js
90
+ - app/assets/javascripts/highcharts/modules/series-label.js
90
91
  - app/assets/javascripts/highcharts/modules/solid-gauge.js
91
92
  - app/assets/javascripts/highcharts/modules/treemap.js
92
93
  - app/assets/javascripts/highcharts/themes/dark-blue.js