mirror of https://github.com/masayuki0812/c3.git
Quite good looking graph derived from d3.js
http://c3js.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
284 B
9 lines
284 B
10 years ago
|
c3_chart_internal_fn.isSafari = function () {
|
||
|
var ua = window.navigator.userAgent;
|
||
|
return ua.indexOf('Safari') >= 0 && ua.indexOf('Chrome') < 0;
|
||
|
};
|
||
|
c3_chart_internal_fn.isChrome = function () {
|
||
|
var ua = window.navigator.userAgent;
|
||
|
return ua.indexOf('Chrome') >= 0;
|
||
|
};
|