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  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  - After  ### Questions: * Does the licenses files need update? no * Is there breaking changes for older versions? no * Does this needs documentation? no Author: AhyoungRyu <fbdkdu...@hanmail.net> 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 <fbdkdu...@hanmail.net> Authored: Mon Mar 13 11:33:58 2017 +0900 Committer: ahyoungryu <ahyoung...@apache.org> 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(); });