Skip to content

Commit f3f8420

Browse files
Update to Highcharts 4.0.0
1 parent 7b20f97 commit f3f8420

19 files changed

+3792
-1242
lines changed
Loading

app/assets/javascripts/highcharts.js

+1,221-1,126
Large diffs are not rendered by default.

app/assets/javascripts/highcharts/adapters/standalone-framework.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Highcharts JS v3.0.10 (2014-03-10)
2+
* @license Highcharts JS v4.0.0 (2014-04-22)
33
*
44
* Standalone Highcharts Framework
55
*
@@ -88,6 +88,7 @@ function augment(obj) {
8888
} else if (el.attachEvent) {
8989

9090
wrappedFn = function (e) {
91+
e.target = e.srcElement || window; // #2820
9192
fn.call(el, e);
9293
};
9394

@@ -450,7 +451,7 @@ return {
450451
* Internal method to return CSS value for given element and property
451452
*/
452453
_getStyle: function (el, prop) {
453-
return window.getComputedStyle(el).getPropertyValue(prop);
454+
return window.getComputedStyle(el, undefined).getPropertyValue(prop);
454455
},
455456

456457
/**

0 commit comments

Comments
 (0)