您的位置:首页 > 其它

win7下声音图标消失的解决办法

2013-12-17 10:24 337 查看
var o = Ext.util.Observable.prototype;

// This is the function we will be executing <b>before</b> the real fireEventMethod.
// It will be passed all the same argments, and has the same scope (this reference).
// Log the firer, the event name, and the arguments to the console.

function fireEventInterceptor(evt) {
var a = arguments;
var msg = "fired the following event {0} with args";

//console.log(this);
console.log(String.format(msg, evt));
console.log(Array.prototype.slice.call(a, 1, a.length));
// console.log(a.slice( 1, a.length));
}

// Set the class's fireEvent to be our interceptor.
o.fireEvent = o.fireEvent.createInterceptor(fireEventInterceptor);

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: