- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getHours (0.23 seconds)
-
src/main/webapp/js/admin/plugins/timepicker/bootstrap-timepicker.min.js
emove:function(){a("document").off(".timepicker"),this.$widget&&this.$widget.remove(),delete this.$element.data().timepicker},setDefaultTime:function(a){if(this.$element.val())this.updateFromElementVal();else if("current"===a){var b=new Date,c=b.getHours(),d=b.getMinutes(),e=b.getSeconds(),f="AM";0!==e&&(e=Math.ceil(b.getSeconds()/this.secondStep)*this.secondStep,60===e&&(d+=1,e=0)),0!==d&&(d=Math.ceil(b.getMinutes()/this.minuteStep)*this.minuteStep,60===d&&(c+=1,d=0)),this.showMeridian&&(0===c?...Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Feb 13 04:21:06 GMT 2020 - 18.2K bytes - Click Count (0) -
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) -
src/test/java/org/codelibs/fess/chat/ChatClientTest.java
assertEquals("http://proxy.example.com/file.doc", source.getUrlLink()); assertNull(source.getGoUrl()); source.setGoUrl("/go/?rt=123&docId=doc123&queryId=q1&order=0"); assertEquals("/go/?rt=123&docId=doc123&queryId=q1&order=0", source.getGoUrl()); } // ========== searchWithQuery with filters tests ========== @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 40.6K bytes - Click Count (0)