You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2018/05/08 14:18:22 UTC

[whimsy] branch master updated (fa68eb7 -> bb77bd3)

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

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


    from fa68eb7  chdir so that the right version of whimsy/asf is picked up
     new 76145d6  move assignment outside of the loop
     new bb77bd3  pesky precedence rules

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:
 www/board/agenda/views/pages/adjournment.js.rb | 4 ++--
 www/board/agenda/views/pages/index.js.rb       | 3 +--
 2 files changed, 3 insertions(+), 4 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
rubys@apache.org.

[whimsy] 01/02: move assignment outside of the loop

Posted by ru...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 76145d6c2cd96a0f20fd307d1b8d7bb24c70443d
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Tue May 8 10:17:25 2018 -0400

    move assignment outside of the loop
---
 www/board/agenda/views/pages/index.js.rb | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/www/board/agenda/views/pages/index.js.rb b/www/board/agenda/views/pages/index.js.rb
index ebf7dce..e28b3fa 100644
--- a/www/board/agenda/views/pages/index.js.rb
+++ b/www/board/agenda/views/pages/index.js.rb
@@ -16,9 +16,8 @@ class Index < Vue
         _th 'Shepherd'
       end
 
+      started = Minutes.started
       _tbody Agenda.index do |row|
-        started = Minutes.started
-
         _tr class: row.color do
           _td row.attach
 

-- 
To stop receiving notification emails like this one, please contact
rubys@apache.org.

[whimsy] 02/02: pesky precedence rules

Posted by ru...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit bb77bd3092d0c312e8c8ca1faa2b57236f0a5fe6
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Tue May 8 10:17:39 2018 -0400

    pesky precedence rules
---
 www/board/agenda/views/pages/adjournment.js.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/board/agenda/views/pages/adjournment.js.rb b/www/board/agenda/views/pages/adjournment.js.rb
index 1ea1d7a..99f0e7d 100644
--- a/www/board/agenda/views/pages/adjournment.js.rb
+++ b/www/board/agenda/views/pages/adjournment.js.rb
@@ -283,8 +283,8 @@ class TodoRemove < Vue
     end
 
     _button.checklist.btn.btn_default 'Submit', onClick: self.submit,
-      disabled: @disabled or people.length == 0 or
-        not people.any? {|person| @checked[person.id]}
+      disabled: (@disabled or people.length == 0 or
+        not people.any? {|person| @checked[person.id]})
   end
 
   def submit()

-- 
To stop receiving notification emails like this one, please contact
rubys@apache.org.