次のDygraphオブジェクトを作成しています。
function prime() {
g = new Dygraph(
document.getElementById("g"),
data, //This is the variable I want to avoid passing in for older browsers
{
labelsDivStyles: { 'textAlign': 'right' },
title: document.getElementById("title").value,
titleHeight: 35,
labelsSeparateLines: true,
includeZero: true
}
);
}
そして、次のような「データ」を含めるかどうかを決定するブラウザチェックが必要です。
if(Browser.Version() > 8){
//include data variable
} else{
//don't include
}
他のケースに対処するための2番目の関数を作成する以外に誰かが何かアイデアを持っていますか