mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-03 22:47:03 +03:00
Special __constructor_end hook to extend js constructors.
This commit is contained in:
parent
f7106f375c
commit
f562d80985
29 changed files with 161 additions and 20 deletions
|
|
@ -20,6 +20,17 @@ function Knoin()
|
|||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Object} thisObject
|
||||
*/
|
||||
Knoin.constructorEnd = function (thisObject)
|
||||
{
|
||||
if (Utils.isFunc(thisObject['__constructor_end']))
|
||||
{
|
||||
thisObject['__constructor_end'].call(thisObject);
|
||||
}
|
||||
};
|
||||
|
||||
Knoin.prototype.sDefaultScreenName = '';
|
||||
Knoin.prototype.oScreens = {};
|
||||
Knoin.prototype.oBoot = null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue