hanhwa_nexacro/client/nexacro-src/lib/common.xjs

16 lines
233 B
Plaintext

this.gfnApiBase = function()
{
return application.g_apiBase || "/api";
};
this.gfnBuildTransactionUrl = function(path)
{
return this.gfnApiBase() + path;
};
this.gfnShowMessage = function(message)
{
trace(message);
};