Getting the flot-rails gem to play nicely with IE8

How to go about getting this Gem working nicely with IE8

Flot is a really useful graphing tool built on top of jQuery, and someone has very kindly created a rails gem called flot-rails which allows you to easily include the relevant JavaScript files in your rails project.

An issue I found recently that was to allow flot to play nicely with IE8 you should have excanvas.js present, this gives canvas support to older versions of Internet Explorer (which is something that flot relies on).

What the README file of the rails-flot gem doesn’t explain well is that packaged up in the gem are all the JavaScript files you could need for flot, include excanvas.js

The fix then, if you are using rails-flot along with a need to support Internet Explorer 8 is to include the following in your manifest file;

//= require excanvas.js

Before you require anything relating to flot.

Recent posts View all

SEO

Google follows URLs in text

Today I learned that Google follows URLs even when they are plain text

Web Dev

Check in with your database

It pays to take a step back and look at how your database is set up every so often. You will often find quick wins and hidden tech debt.