You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by hu...@apache.org on 2019/06/12 11:03:42 UTC

[kibble] 01/02: typo

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kibble.git

commit aed3af003976c6654a708e01a66ea90fdb4b884e
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Wed Jun 12 13:03:26 2019 +0200

    typo
---
 ui/js/coffee/datepicker.coffee | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/js/coffee/datepicker.coffee b/ui/js/coffee/datepicker.coffee
index 860237c..5e3c7b8 100644
--- a/ui/js/coffee/datepicker.coffee
+++ b/ui/js/coffee/datepicker.coffee
@@ -121,6 +121,6 @@ datepicker = (widget) ->
         
         $('#' + id).daterangepicker(datePickerOptions, (start, end, label) ->
                 console.log(start._d.getTime()/1000)
-                updateTimeseriesWidgets([Math.Max(0, Math.floor(start._d.getTime()/1000)), Math.Max(3600, Math.floor(end._d.getTime()/1000))])
+                updateTimeseriesWidgets([Math.max(0, Math.floor(start._d.getTime()/1000)), Math.max(3600, Math.floor(end._d.getTime()/1000))])
         );