You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2019/05/09 11:54:44 UTC

[whimsy] branch master updated: Other parameterless methods have ()

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

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


The following commit(s) were added to refs/heads/master by this push:
     new e9d3311  Other parameterless methods have ()
e9d3311 is described below

commit e9d3311f356c6f8457265e554dae7eb72cb92f76
Author: Sebb <se...@apache.org>
AuthorDate: Thu May 9 12:54:40 2019 +0100

    Other parameterless methods have ()
---
 www/secretary/workbench/views/index.js.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/secretary/workbench/views/index.js.rb b/www/secretary/workbench/views/index.js.rb
index f743b21..c4ff935 100644
--- a/www/secretary/workbench/views/index.js.rb
+++ b/www/secretary/workbench/views/index.js.rb
@@ -7,7 +7,7 @@ class Index < Vue
     console.log msg
   end
 
-  def initialize
+  def initialize()
     log 'initialize'
     @selected = nil
     @messages = []
@@ -15,7 +15,7 @@ class Index < Vue
     @fetched = false
   end
 
-  def render
+  def render()
     log 'render'
     if not @messages or @messages.all? {|message| message.status == :deleted}
       _p.container_fluid 'All documents have been processed.'