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/11 01:30:15 UTC

[kibble] branch master updated (4725175 -> 35dba8c)

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 4725175  The object is deleted in the delete_by_query, so...skip this
     new 366b93b  Remove date limit
     new 35dba8c  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 | 3 ---
 ui/js/kibble.v1.js             | 3 ---
 2 files changed, 6 deletions(-)


[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 35dba8c34bea8f3c5bc8d06f627c334d9b5837fc
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Tue Jun 11 03:30:00 2019 +0200

    Regen JS
---
 ui/js/kibble.v1.js | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/ui/js/kibble.v1.js b/ui/js/kibble.v1.js
index a4a5abf..b064c16 100644
--- a/ui/js/kibble.v1.js
+++ b/ui/js/kibble.v1.js
@@ -1647,9 +1647,6 @@ datepicker = function(widget) {
     endDate: globArgs.to ? moment(new Date(globArgs.to * 1000)) : moment(),
     minDate: '1970-01-01',
     maxDate: moment().add(2, 'years').format('YYYY-01-01'),
-    dateLimit: {
-      days: 365
-    },
     showDropdowns: true,
     showWeekNumbers: true,
     timePicker: false,


[kibble] 01/02: Remove date limit

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 366b93beab8883fc599a6ae4b12e2fa3d0dc9810
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Tue Jun 11 03:29:28 2019 +0200

    Remove date limit
    
    This fixes issue #19
---
 ui/js/coffee/datepicker.coffee | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/ui/js/coffee/datepicker.coffee b/ui/js/coffee/datepicker.coffee
index 02a2fad..e7c9732 100644
--- a/ui/js/coffee/datepicker.coffee
+++ b/ui/js/coffee/datepicker.coffee
@@ -81,9 +81,6 @@ datepicker = (widget) ->
           endDate: if globArgs.to then moment(new Date(globArgs.to*1000)) else moment(),
           minDate: '1970-01-01',
           maxDate: moment().add(2, 'years').format('YYYY-01-01'),
-          dateLimit: {
-            days: 365
-          },
           showDropdowns: true,
           showWeekNumbers: true,
           timePicker: false,