From commits-return-3440-archive-asf-public=cust-asf.ponee.io@whimsical.apache.org Sat May 26 17:53:44 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id D9254180671 for ; Sat, 26 May 2018 17:53:43 +0200 (CEST) Received: (qmail 86407 invoked by uid 500); 26 May 2018 15:53:43 -0000 Mailing-List: contact commits-help@whimsical.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@whimsical.apache.org Delivered-To: mailing list commits@whimsical.apache.org Received: (qmail 86396 invoked by uid 99); 26 May 2018 15:53:43 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 26 May 2018 15:53:43 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 790F68075B; Sat, 26 May 2018 15:53:42 +0000 (UTC) Date: Sat, 26 May 2018 15:53:42 +0000 To: "commits@whimsical.apache.org" Subject: [whimsy] branch master updated: eliminate unnecessary message MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <152735002244.27056.8859669475166263641@gitbox.apache.org> From: rubys@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: whimsy X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: fad21443c03794397da9fba833d4ea7d85924fb7 X-Git-Newrev: 7df325235396493643590a9b68008825314d2fd5 X-Git-Rev: 7df325235396493643590a9b68008825314d2fd5 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 The following commit(s) were added to refs/heads/master by this push: new 7df3252 eliminate unnecessary message 7df3252 is described below commit 7df325235396493643590a9b68008825314d2fd5 Author: Sam Ruby AuthorDate: Sat May 26 11:50:48 2018 -0400 eliminate unnecessary message --- www/board/agenda/views/buttons/summary.js.rb | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/www/board/agenda/views/buttons/summary.js.rb b/www/board/agenda/views/buttons/summary.js.rb index 8874860..3fe6fe8 100644 --- a/www/board/agenda/views/buttons/summary.js.rb +++ b/www/board/agenda/views/buttons/summary.js.rb @@ -40,14 +40,8 @@ class Summary < Vue end def send(event) - data = { - agenda: Agenda.file, - message: "Draft minutes for #{Agenda.title}", - text: @summary - } - @disabled = true - post 'summary', data do |response| + post 'summary', agenda: Agenda.file, text: @summary do |response| Minutes.load response.minutes @disabled = false jQuery('#summary-form').modal(:hide) -- To stop receiving notification emails like this one, please contact rubys@apache.org.