- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getHours (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/webapp/js/chat.js
*/ function showEmptyState() { elements.emptyState.show(); } /** * Format timestamp */ function formatTimestamp(date) { var hours = date.getHours(); var minutes = date.getMinutes(); var ampm = hours >= 12 ? 'PM' : 'AM'; hours = hours % 12; hours = hours ? hours : 12; minutes = minutes < 10 ? '0' + minutes : minutes;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 01:36:02 GMT 2026 - 30.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/ChatMessage.java
this.urlLink = urlLink; } /** * Gets the go link URL for navigation. * * @return the go URL */ public String getGoUrl() { return goUrl; } /** * Sets the go link URL for navigation. * * @param goUrl the go URL */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 04:52:31 GMT 2026 - 10.1K bytes - Click Count (0)