From commits-return-325-apmail-whimsical-commits-archive=whimsical.apache.org@whimsical.apache.org Tue Jan 19 17:49:07 2016 Return-Path: X-Original-To: apmail-whimsical-commits-archive@minotaur.apache.org Delivered-To: apmail-whimsical-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C4FD518C97 for ; Tue, 19 Jan 2016 17:49:07 +0000 (UTC) Received: (qmail 93892 invoked by uid 500); 19 Jan 2016 17:49:07 -0000 Delivered-To: apmail-whimsical-commits-archive@whimsical.apache.org Received: (qmail 93872 invoked by uid 500); 19 Jan 2016 17:49:07 -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 93863 invoked by uid 99); 19 Jan 2016 17:49:07 -0000 Received: from Unknown (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Jan 2016 17:49:07 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 4F89B1A0692 for ; Tue, 19 Jan 2016 17:49:07 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.247 X-Spam-Level: * X-Spam-Status: No, score=1.247 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-0.554, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id PTcIjUkRUJsy for ; Tue, 19 Jan 2016 17:48:55 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with ESMTP id 3355823016 for ; Tue, 19 Jan 2016 17:48:55 +0000 (UTC) Received: from matt.apache.org (unknown [207.244.88.130]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 3CB4FE0185 for ; Tue, 19 Jan 2016 17:48:54 +0000 (UTC) Received: by matt.apache.org (ASF Mail Server at matt.apache.org, from userid 33) id 4907CC778; Tue, 19 Jan 2016 17:48:53 +0000 (UTC) From: Sam Ruby Reply-To: commits@whimsical.apache.org To: commits@whimsical.apache.org Subject: [whimsy.git] [1/3] Commit 2a8bedd: don't overwrite title with mtime Message-Id: <20160119174853.4907CC778@matt.apache.org> Date: Tue, 19 Jan 2016 17:48:53 +0000 (UTC) Commit 2a8bedd90851920f8f14a83fbcd57c253ccdb3bf: don't overwrite title with mtime Branch: refs/heads/master Author: Sam Ruby Committer: Sam Ruby Pusher: rubys ------------------------------------------------------------ www/status/js/status.js | + - ------------------------------------------------------------ 2 changes: 1 additions, 1 deletions. ------------------------------------------------------------ diff --git a/www/status/js/status.js b/www/status/js/status.js index 2abb1bf..69aa22e 100644 --- a/www/status/js/status.js +++ b/www/status/js/status.js @@ -53,7 +53,7 @@ $(function() { } // provide ISO-8601 formatted GMT time as a tooltip - if (value.mtime) { + if (value.mtime && !value.title) { div.children('a:not(.data-toggle)').attr('title', value.mtime); }