Repository: incubator-zeppelin Updated Branches: refs/heads/master a41b50db5 -> cbed7c453
Add tooltip for notes reload button ### What is this PR for? Notebook reload icon is not intuitive so add tooltip to it. ### What type of PR is it? Improvement ### Screenshots (if appropriate)  ### Questions: * Does the licenses files need update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Author: Mina Lee <[email protected]> Closes #813 from minahlee/reloadButtonTooltip and squashes the following commits: 3faff35 [Mina Lee] Add tooltip for notes reload button Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/cbed7c45 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/cbed7c45 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/cbed7c45 Branch: refs/heads/master Commit: cbed7c453f7f5e4ac56eeb1bf791770812f3761b Parents: a41b50d Author: Mina Lee <[email protected]> Authored: Mon Apr 4 16:21:50 2016 +0900 Committer: Lee moon soo <[email protected]> Committed: Sat Apr 16 06:46:53 2016 +0100 ---------------------------------------------------------------------- zeppelin-web/src/app/home/home.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/cbed7c45/zeppelin-web/src/app/home/home.html ---------------------------------------------------------------------- diff --git a/zeppelin-web/src/app/home/home.html b/zeppelin-web/src/app/home/home.html index 5eff5e0..71a7a1a 100644 --- a/zeppelin-web/src/app/home/home.html +++ b/zeppelin-web/src/app/home/home.html @@ -29,7 +29,8 @@ limitations under the License. <h4>Notebook <i ng-class="isReloadingNotes ? 'fa fa-refresh fa-spin' : 'fa fa-refresh'" ng-style="!isReloadingNotes && {'cursor': 'pointer'}" style="font-size: 13px;" - ng-click="reloadNotebookList();"> + ng-click="reloadNotebookList();" + tooltip-placement="bottom" tooltip="Reload notes from storage"> </i> </h4>
