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 2017/10/23 10:47:33 UTC

[kibble] branch master updated (e685651 -> 973daee)

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 e685651  regen JS
     new 9741ed5  need to reset the text field too!
     new 973daee  regen again

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/explorer.coffee | 4 ++--
 ui/js/kibble.v1.js           | 3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@kibble.apache.org" <co...@kibble.apache.org>'].

[kibble] 01/02: need to reset the text field too!

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 9741ed5e2c128a0eceacc3ccc6416ce47340df31
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Mon Oct 23 12:47:22 2017 +0200

    need to reset the text field too!
---
 ui/js/coffee/explorer.coffee | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ui/js/coffee/explorer.coffee b/ui/js/coffee/explorer.coffee
index 6abb682..3741377 100644
--- a/ui/js/coffee/explorer.coffee
+++ b/ui/js/coffee/explorer.coffee
@@ -543,9 +543,9 @@ viewexplorer = (json, state) ->
         
         # Quick filter
         state.widget.inject(new HTML('br'))
-        i = new HTML('input', {type: 'text', value: globArgs.subfilter, onChange: 'subFilterGlob = this.value;', placeholder: 'sub-filter'})
+        i = new HTML('input', {id:'subfilter', type: 'text', value: globArgs.subfilter, onChange: 'subFilterGlob = this.value;', placeholder: 'sub-filter'})
         b = new HTML('input', {style: { marginLeft: '10px'}, class: 'btn btn-small btn-success', type: 'button', onClick: 'subFilter();', value: "sub-filter"})
-        rb = new HTML('input', {style: { marginLeft: '10px'}, class: 'btn btn-small btn-danger', type: 'button', onClick: 'subFilterGlob=""; subFilter();', value: "reset"})
+        rb = new HTML('input', {style: { marginLeft: '10px'}, class: 'btn btn-small btn-danger', type: 'button', onClick: 'get("subfilter").value=""; subFilterGlob=""; subFilter();', value: "reset"})
         state.widget.inject(i)
         state.widget.inject(b)
         state.widget.inject(rb)

-- 
To stop receiving notification emails like this one, please contact
"commits@kibble.apache.org" <co...@kibble.apache.org>.

[kibble] 02/02: regen again

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 973daee113adb1ba26b13c2d49e1b27994c7c9fe
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Mon Oct 23 12:47:26 2017 +0200

    regen again
---
 ui/js/kibble.v1.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ui/js/kibble.v1.js b/ui/js/kibble.v1.js
index 90b4e47..5c0f9e5 100644
--- a/ui/js/kibble.v1.js
+++ b/ui/js/kibble.v1.js
@@ -2267,6 +2267,7 @@ viewexplorer = function(json, state) {
   });
   state.widget.inject(new HTML('br'));
   i = new HTML('input', {
+    id: 'subfilter',
     type: 'text',
     value: globArgs.subfilter,
     onChange: 'subFilterGlob = this.value;',
@@ -2287,7 +2288,7 @@ viewexplorer = function(json, state) {
     },
     "class": 'btn btn-small btn-danger',
     type: 'button',
-    onClick: 'subFilterGlob=""; subFilter();',
+    onClick: 'get("subfilter").value=""; subFilterGlob=""; subFilter();',
     value: "reset"
   });
   state.widget.inject(i);

-- 
To stop receiving notification emails like this one, please contact
"commits@kibble.apache.org" <co...@kibble.apache.org>.