Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B856E200C3D for ; Tue, 14 Mar 2017 13:04:37 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id B6D82160B7E; Tue, 14 Mar 2017 12:04:37 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 0BACC160B7C for ; Tue, 14 Mar 2017 13:04:36 +0100 (CET) Received: (qmail 17300 invoked by uid 500); 14 Mar 2017 12:04:36 -0000 Mailing-List: contact commits-help@zeppelin.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zeppelin.apache.org Delivered-To: mailing list commits@zeppelin.apache.org Received: (qmail 17291 invoked by uid 99); 14 Mar 2017 12:04:35 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Mar 2017 12:04:35 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DD3EADFDC8; Tue, 14 Mar 2017 12:04:34 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ahyoungryu@apache.org To: commits@zeppelin.apache.org Message-Id: <7ae80c9cdf3e4610b984d61bc70f4fc4@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: zeppelin git commit: [gh-pages] Initialize bootstrap tooltip Date: Tue, 14 Mar 2017 12:04:34 +0000 (UTC) archived-at: Tue, 14 Mar 2017 12:04:37 -0000 Repository: zeppelin Updated Branches: refs/heads/gh-pages e8b8a9620 -> 97ac8e5b1 [gh-pages] Initialize bootstrap tooltip ### What is this PR for? Currently can't see a tooltip msg when I hover mouse on ![screen shot 2017-03-13 at 11 37 36 am](https://cloud.githubusercontent.com/assets/10060731/23839442/7c84c184-07e1-11e7-8df1-bf1fc4d13cae.png) which exists next to "Scalding", "Geode" and "Beam" in https://zeppelin.apache.org/supported_interpreters.html. It needs to be initialized first as [bootstrap instruction](http://getbootstrap.com/javascript/#four-directions) says. ### What type of PR is it? Bug Fix ### What is the Jira issue? N/A ### How should this be tested? Run the website(`gh-pages`) locally as described in [here](https://github.com/apache/zeppelin/tree/gh-pages#run-website) ### Screenshots (if appropriate) - Before ![before](https://cloud.githubusercontent.com/assets/10060731/23839427/62eb4b12-07e1-11e7-810e-8e990d1a5bfc.gif) - After ![after](https://cloud.githubusercontent.com/assets/10060731/23839426/614cae54-07e1-11e7-8ac2-bf3440608ffe.gif) ### Questions: * Does the licenses files need update? no * Is there breaking changes for older versions? no * Does this needs documentation? no Author: AhyoungRyu Closes #2127 from AhyoungRyu/fix/tooltip and squashes the following commits: 95a7fb3 [AhyoungRyu] Initialize tooltip functionality Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/97ac8e5b Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/97ac8e5b Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/97ac8e5b Branch: refs/heads/gh-pages Commit: 97ac8e5b1ade390d6ebf2ddd3ee420200fa17906 Parents: e8b8a96 Author: AhyoungRyu Authored: Mon Mar 13 11:33:58 2017 +0900 Committer: ahyoungryu Committed: Tue Mar 14 21:04:28 2017 +0900 ---------------------------------------------------------------------- assets/themes/zeppelin/js/docs.js | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zeppelin/blob/97ac8e5b/assets/themes/zeppelin/js/docs.js ---------------------------------------------------------------------- diff --git a/assets/themes/zeppelin/js/docs.js b/assets/themes/zeppelin/js/docs.js index 4da691a..2b880db 100644 --- a/assets/themes/zeppelin/js/docs.js +++ b/assets/themes/zeppelin/js/docs.js @@ -37,4 +37,6 @@ $(function() { $(window).bind('hashchange', function() { maybeScrollToHash(); }); + + $('[data-toggle="tooltip"]').tooltip(); });