ember-highcharts
Advanced tools
Comparing version 0.4.0 to 0.4.1
# Changelog | ||
## 0.4.1 | ||
- Fix path issue for highcharts-more & highcharts-3d | ||
## 0.4.0 | ||
@@ -4,0 +8,0 @@ |
13
index.js
@@ -19,19 +19,19 @@ /* jshint node: true */ | ||
if (options.includeHighCharts || options.includeHighCharts3D) { | ||
app.import(highchartsPath + '/highcharts.src.js'); | ||
app.import(path.join(highchartsPath, 'highcharts.src.js')); | ||
} | ||
if (options.includeHighStock) { | ||
app.import(highchartsPath + '/highstock.src.js'); | ||
app.import(path.join(highchartsPath, 'highstock.src.js')); | ||
} | ||
if (options.includeHighMaps) { | ||
app.import(highchartsPath + '/highmaps.src.js'); | ||
app.import(path.join(highchartsPath, 'highmaps.src.js')); | ||
} | ||
if (options.includeHighChartsMore) { | ||
app.import(highchartsPath + '/highcharts/highcharts-more.src.js'); | ||
app.import(path.join(highchartsPath, 'highcharts-more.src.js')); | ||
} | ||
if (options.includeHighCharts3D) { | ||
app.import(highchartsPath + '/highcharts/highcharts-3d.src.js'); | ||
app.import(path.join(highchartsPath, 'highcharts-3d.src.js')); | ||
} | ||
@@ -42,3 +42,4 @@ | ||
for (var i = 0; i < modules.length; i++) { | ||
app.import(highchartsPath + '/modules/' + modules[i] + '.src.js'); | ||
var moduleFilename = modules[i] + '.src.js'; | ||
app.import(path.join(highchartsPath, 'modules', moduleFilename)); | ||
} | ||
@@ -45,0 +46,0 @@ } |
{ | ||
"name": "ember-highcharts", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "A Highcharts, HighStock and HighMaps component for ember cli", | ||
@@ -5,0 +5,0 @@ "directories": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16164
226