We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
evaluate from issue#73, introduce new bug for highcharts version.
Highcharts JS v2.3.1 (2012-08-29) from highcharts site. lazy_high_charts, use rails g lazy_high_charts:install will install from github. highcharts stock branch. the version always https://raw.github.com/highslide-software/highcharts.com/stock/js/highcharts.src.js
in lazy_high_charts gem version 1.2.0 below url is outage, need update asap def install_highcharts(opts = nil) 6 say_status("installing", "Highcharts javascript (github STOCK branch)", :green) 7 if ::Rails::VERSION::MAJOR == 3 && ::Rails::VERSION::MINOR >= 1 8 get 'http://highcharts.com/js/highstock.js', 'vendor/assets/javascripts/highcharts.js' 9 else 10 get "https://raw.github.com/highslide-software/highcharts.com/stock/js/highcharts.src.js","public/javascripts/highcharts.js" 11 end 12 rescue OpenURI::HTTPError 13 say_status("warning", "could not find Highcharts javascript file", :yellow) 14 end
The text was updated successfully, but these errors were encountered:
fixed, need merge to gem version
Sorry, something went wrong.
xiaods
No branches or pull requests
evaluate from issue#73, introduce new bug for highcharts version.
Highcharts JS v2.3.1 (2012-08-29) from highcharts site.
lazy_high_charts, use rails g lazy_high_charts:install will install from github. highcharts stock branch.
the version always https://raw.github.com/highslide-software/highcharts.com/stock/js/highcharts.src.js
in lazy_high_charts gem version 1.2.0 below url is outage, need update asap
def install_highcharts(opts = nil)
6 say_status("installing", "Highcharts javascript (github STOCK branch)", :green)
7 if ::Rails::VERSION::MAJOR == 3 && ::Rails::VERSION::MINOR >= 1
8 get 'http://highcharts.com/js/highstock.js', 'vendor/assets/javascripts/highcharts.js'
9 else
10 get "https://raw.github.com/highslide-software/highcharts.com/stock/js/highcharts.src.js","public/javascripts/highcharts.js"
11 end
12 rescue OpenURI::HTTPError
13 say_status("warning", "could not find Highcharts javascript file", :yellow)
14 end
The text was updated successfully, but these errors were encountered: