Bug 450396: password engine does not define a tracker

This commit is contained in:
Dan Mills 2008-08-13 15:19:56 -07:00
parent 3f46b77cd5
commit 2e17c212f4

View File

@ -70,6 +70,13 @@ PasswordEngine.prototype = {
if (!this.__core)
this.__core = new PasswordSyncCore(this._store);
return this.__core;
},
__tracker: null,
get _tracker() {
if (!this.__tracker)
this.__tracker = new PasswordTracker();
return this.__tracker;
}
};