Subversion Repositories HomeAutomation

Rev

Rev 2083 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 2083 Rev 2103
Line 225... Line 225...
225
    ConsoleExport_DisconnectClient(Console_LastClientId);
225
    ConsoleExport_DisconnectClient(Console_LastClientId);
226
    Console_LastClientId = null;
226
    Console_LastClientId = null;
227
    return false;
227
    return false;
228
}
228
}
229
Console_RegisterCommand(quit);
229
Console_RegisterCommand(quit);
-
 
230
 
-
 
231
function timestampRaw()
-
 
232
{
-
 
233
  var result = { timestamp: (new Date()).getTime() };
-
 
234
 
-
 
235
  Log(JSON.stringify(result));
-
 
236
  return true;
-
 
237
}
-
 
238
Console_RegisterCommand(timestampRaw);