Skip to content

Commit

Permalink
--- 2.1.6 official release ---
Browse files Browse the repository at this point in the history
  • Loading branch information
highslide-software committed Jul 8, 2011
1 parent 9a78f1f commit 677e3a0
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 7 deletions.
2 changes: 1 addition & 1 deletion js/adapters/mootools-adapter.src.js
@@ -1,5 +1,5 @@
/**
* @license Highcharts JS v2.1.5 (2011-06-22)
* @license Highcharts JS v2.1.6 (2011-07-08)
* MooTools adapter
*
* (c) 2010-2011 Torstein Hønsi
Expand Down
2 changes: 1 addition & 1 deletion js/adapters/prototype-adapter.src.js
@@ -1,5 +1,5 @@
/**
* @license Highcharts JS v2.1.5 (2011-06-22)
* @license Highcharts JS v2.1.6 (2011-07-08)
* Prototype adapter
*
* @author Michael Nelson, Torstein Hønsi.
Expand Down
10 changes: 8 additions & 2 deletions js/highcharts.src.js
Expand Up @@ -2,7 +2,7 @@
// @compilation_level SIMPLE_OPTIMIZATIONS

/**
* @license Highcharts JS v2.1.5 (2011-06-22)
* @license Highcharts JS v2.1.6 (2011-07-08)
*
* (c) 2009-2011 Torstein Hønsi
*
Expand Down Expand Up @@ -10867,6 +10867,11 @@ var PieSeries = extendClass(Series, {
i = 2,
j;

// get out if not enabled
if (!options.enabled) {
return;
}

// run parent method
Series.prototype.drawDataLabels.apply(series);

Expand Down Expand Up @@ -11092,6 +11097,7 @@ win.Highcharts = {
merge: merge,
pick: pick,
extendClass: extendClass,
version: '2.1.5'
product: 'Highcharts',
version: '2.1.6'
};
}());
2 changes: 1 addition & 1 deletion js/modules/exporting.src.js
@@ -1,5 +1,5 @@
/**
* @license Highcharts JS v2.1.5 (2011-06-22)
* @license Highcharts JS v2.1.6 (2011-07-08)
* Exporting module
*
* (c) 2010-2011 Torstein Hønsi
Expand Down
2 changes: 1 addition & 1 deletion js/parts/Intro.js
Expand Up @@ -2,7 +2,7 @@
// @compilation_level SIMPLE_OPTIMIZATIONS

/**
* @license Highcharts JS v2.1.5 (2011-06-22)
* @license Highcharts JS v2.1.6 (2011-07-08)
*
* (c) 2009-2011 Torstein Hønsi
*
Expand Down
3 changes: 2 additions & 1 deletion js/parts/Outro.js
Expand Up @@ -24,6 +24,7 @@ win.Highcharts = {
merge: merge,
pick: pick,
extendClass: extendClass,
version: '2.1.5'
product: 'Highcharts',
version: '2.1.6'
};
}());
5 changes: 5 additions & 0 deletions js/parts/PieSeries.js
Expand Up @@ -398,6 +398,11 @@ var PieSeries = extendClass(Series, {
i = 2,
j;

// get out if not enabled
if (!options.enabled) {
return;
}

// run parent method
Series.prototype.drawDataLabels.apply(series);

Expand Down

0 comments on commit 677e3a0

Please sign in to comment.