original code can be found at: https://github.com/FakeSmile/FakeSmile
and at: https://leunen.me/fakesmile/

This is a polyfill for SVGs and SMIL animations. IE does not support SVG animations like other browsers and our spinners were broken in IE.

To use, you only need to load the smil.check.min.js file which will load smil.user.min.js if necessary.

changed smil.check.js to use the same SMIL check that modernizr uses because the original smil.check.js did not work in at least IE11

Also fixed smil.check.js because it called:
 scriptEle.setAttribute(src, relPath + "smil.user.min.js");
instead of:
 scriptEle.setAttribute("src", relPath + "smil.user.min.js");

Uglified with options:
{
   compress: {},
   mangle: true,
   beautify: false,
   sourceMap: true,
   sourceMapIncludeSources: true,
   report: 'min',
   wrap: true
}


