1 2 /** 3 * @fileoverview The '<code>charts</code>' namespace definition. 4 * @version 1.0.1 5 * @see https://google.github.io/styleguide/jsguide.html 6 * @see https://github.com/google/closure-compiler/wiki 7 */ 8 9 10 /** 11 * The '<code>charts</code>' namespace definition. 12 * @namespace The '<code>charts</code>' namespace definition. 13 */ 14 var charts = window['charts'] = window['charts'] || {}; 15 16 17 /** 18 * Indicates if SVG is supported by current browser. 19 * @type {boolean} 20 * @static 21 * @const 22 */ 23 charts.IS_SVG_SUPPORTED = !!window['SVGSVGElement']; 24 25 26 /** 27 * Indicates if CSS3 is supported by current browser. 28 * @type {boolean} 29 * @static 30 * @const 31 */ 32 charts.IS_CSS3_SUPPORTED = false; /*'transition' in document.body.style;*/ 33