jQuery Widget Factory の組み込み _setOptions メソッドをオーバーライドしようとしていますが、親の _setOptions 関数を呼び出す方法がわかりません。jQuery 1.8.24 を使用しているためsuper
、1.9 以降でのみ使用できるメソッドを使用できません。
_setOption: function(key, value){
console.log('key => '+ key + '; value => '+ value); // Test to see if this gets called
if(this[key] != value) {
$.Widget.prototype._setOption.apply(this,arguments); // Call the parent option
}
},
_setOptions: function(options){
console.log('Config multi options');
console.log(options);
//$.Widget.prototype._setOptions.apply(this, options); // throws error
// Ripped out the guts of Widget _setOptions for now. Feels hackish.
var self = this;
$.each(options, function(key, value) {
self._setOption(key, value);
});
// What to do after finished setting multiple options.
this._configureVideo();
this.play();
},