mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-14 10:28:31 +02:00
Moved et2 core interfaces to own file; implemented Class.free which cares about calling 'destroy', removing all references the object may hold and rendering the object unusable after 'free' has been called; added 'getMem_freeMem_trace' which helps hunting down memory leaks with objects derriving from Class; added first implementation of the nextmatch widget - currently does nothing else but rendering the header and clicking on the nextmatch_sortheader labels
This commit is contained in:
@ -594,3 +594,13 @@ function et2_hasChild(_nodes, _child)
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Generates a localy unique id and returns it
|
||||
*/
|
||||
var _et2_uniqueId = 0;
|
||||
|
||||
function et2_uniqueId()
|
||||
{
|
||||
return _et2_uniqueId++;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user