Client side API now supports modules which are instanciated per application or per window; removed et2_debug function from et2_core_common, now using corresponding API function.

This commit is contained in:
Andreas Stöckel
2012-03-05 13:07:38 +00:00
parent a5be6a5016
commit d310b14ecf
30 changed files with 1087 additions and 278 deletions

View File

@ -35,7 +35,7 @@ var et2_arrayMgr = Class.extend({
// Hold a reference to the data
if (typeof _data == "undefined" || !_data)
{
et2_debug("error", "Invalid data passed to content array manager!");
egw.debug("error", "Invalid data passed to content array manager!");
_data = {};
}
@ -224,7 +224,7 @@ var et2_arrayMgr = Class.extend({
catch(e)
{
proto.compiledExpressions[_ident] = null;
et2_debug("error", "Error while compiling PHP->JS ", e);
egw.debug("error", "Error while compiling PHP->JS ", e);
}
}
@ -239,7 +239,7 @@ var et2_arrayMgr = Class.extend({
}
catch(e)
{
et2_debug("error", e);
egw.debug("error", e);
}
}
}