Remove __proto__.__proto__ it's fail-prone

This commit is contained in:
Dan Mills 2009-04-10 16:08:31 -07:00
parent 67fd1f1e82
commit a789863032

View File

@ -492,7 +492,7 @@ HistoryTracker.prototype = {
},
_init: function HT__init() {
this.__proto__.__proto__._init.call(this);
Tracker._init.call(this);
this._hsvc.addObserver(this, false);
},