$.extend 関数に問題があります。以下のコードを参照してください...
//Function to merge the opts with the defaultOpts
var foo = function(opts){
var opts = opts ? opts : {};
console.log('BEFORE: ');
console.log(JSON.stringify(opts));
var defaultOpts = {
className : 'defaultClass',
selectable : false,
ID : null,
buttons : []
}
$.extend(true, opts, defaultOpts);
console.log('AFTER: ');
console.log(JSON.stringify(opts));
}
//Run the function and pass in a few options
foo({
className : 'realClassName',
buttons : [
{
something : 'nothing'
},
{
something : 'nothing'
}
]
});
出力の問題は、「className」プロパティがデフォルト値に置き換えられていることですが、何らかの理由で「buttons」プロパティが期待どおりに機能することです。