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:41 UTC

[kibble] branch master updated (124a90e -> 9a1ee2d)

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

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


    from 124a90e  regen JS
     new aed3af0  typo
     new 9a1ee2d  regen JS

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ui/js/coffee/datepicker.coffee | 2 +-
 ui/js/kibble.v1.js             | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[kibble] 01/02: typo

Posted by hu...@apache.org.
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))])
         );
 


[kibble] 02/02: regen JS

Posted by hu...@apache.org.
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 9a1ee2deb2a626e33be07fb207892ddeba59448d
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Wed Jun 12 13:03:31 2019 +0200

    regen JS
---
 ui/js/kibble.v1.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/js/kibble.v1.js b/ui/js/kibble.v1.js
index 85330e7..3106b92 100644
--- a/ui/js/kibble.v1.js
+++ b/ui/js/kibble.v1.js
@@ -1694,7 +1694,7 @@ datepicker = function(widget) {
   };
   return $('#' + id).daterangepicker(datePickerOptions, function(start, end, label) {
     console.log(start._d.getTime() / 1000);
-    return updateTimeseriesWidgets([Math.Max(0, Math.floor(start._d.getTime() / 1000)), Math.Max(3600, Math.floor(end._d.getTime() / 1000))]);
+    return updateTimeseriesWidgets([Math.max(0, Math.floor(start._d.getTime() / 1000)), Math.max(3600, Math.floor(end._d.getTime() / 1000))]);
   });
 };