Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added custom CSS in highcharts #93

Merged
merged 11 commits into from Jul 6, 2018
1 change: 1 addition & 0 deletions .rubocop.yml
Expand Up @@ -7,6 +7,7 @@ AllCops:
- 'Guardfile'
- '**/*.erb'
- '**/*.js'
- '**/*.css'
- 'spec/*'
- 'spec/**/*'
- 'vendor/**/*'
Expand Down
5 changes: 4 additions & 1 deletion lib/daru/view.rb
Expand Up @@ -112,7 +112,10 @@ def dependent_script(lib=:nyaplot)
when :nyaplot
Nyaplot.init_script
when :highcharts
LazyHighCharts.init_script
init_code = ''
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We must have one class method, which will return init_css and init_script.
So we can use the same class method here as well.
DRY and Loose Coupling concepts should be applied.

init_code << LazyHighCharts.init_css
init_code << LazyHighCharts.init_script
init_code
when :googlecharts
GoogleVisualr.init_script
when :datatables
Expand Down