Repository: zeppelin
Updated Branches:
  refs/heads/master dfa1250f9 -> 6b0f6e7a0


ZEPPELIN-2985: correct grammar in keyboard tooltip

### What is this PR for?
The tooltip for "List of shortcut" should read "List of shortcuts" (plural).

### What type of PR is it?
Bug Fix

### Todos
* N/A

### What is the Jira issue?
* https://issues.apache.org/jira/browse/ZEPPELIN-2985

### How should this be tested?
* Hover over tooltip. Ensure that tooltip contains changes and behaves like a
  tooltip. (Shows up then hides based on cursor position)

### 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: Gabe Fernando <gef...@gmail.com>

Closes #2617 from gef756/dev-kb-tooltip and squashes the following commits:

b0365de [Gabe Fernando] ENH: correct grammar in keyboard tooltip


Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/6b0f6e7a
Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/6b0f6e7a
Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/6b0f6e7a

Branch: refs/heads/master
Commit: 6b0f6e7a086be19323ae59e3a85408914dd1676d
Parents: dfa1250
Author: Gabe Fernando <gef...@gmail.com>
Authored: Mon Oct 9 18:19:22 2017 -0400
Committer: Lee moon soo <m...@apache.org>
Committed: Mon Oct 16 09:21:31 2017 -0700

----------------------------------------------------------------------
 zeppelin-web/src/app/notebook/notebook-actionBar.html | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/6b0f6e7a/zeppelin-web/src/app/notebook/notebook-actionBar.html
----------------------------------------------------------------------
diff --git a/zeppelin-web/src/app/notebook/notebook-actionBar.html 
b/zeppelin-web/src/app/notebook/notebook-actionBar.html
index 0e04d49..b121fee 100644
--- a/zeppelin-web/src/app/notebook/notebook-actionBar.html
+++ b/zeppelin-web/src/app/notebook/notebook-actionBar.html
@@ -19,10 +19,10 @@ limitations under the License.
       <input type="text" pu-elastic-input class="form-control2" 
placeholder="New name" style="min-width: 0px; max-width: 95%;"
            ng-if="input.showEditor" ng-model="input.value" 
ng-escape="input.showEditor = false" focus-if="input.showEditor"
            ng-blur="updateNoteName(input.value);input.showEditor = false;" 
ng-enter="updateNoteName(input.value);input.showEditor = false;" />
-      <p class="form-control-static2" 
-         tooltip-placement="bottom" 
+      <p class="form-control-static2"
+         tooltip-placement="bottom"
          uib-tooltip={{noteName(note)}}
-         ng-click="input.showEditor = !revisionView; input.value = note.name" 
+         ng-click="input.showEditor = !revisionView; input.value = note.name"
          ng-show="!input.showEditor">{{noteName(note)}}</p>
     </div>
     <div style="float: left; padding-bottom: 10px">
@@ -300,7 +300,7 @@ limitations under the License.
               type="button"
               data-toggle="modal"
               data-target="#shortcutModal"
-              tooltip-placement="bottom" uib-tooltip="List of shortcut">
+              tooltip-placement="bottom" uib-tooltip="List of shortcuts">
           <i class="fa fa-keyboard-o"></i>
         </span>
         <span class="setting-btn"

Reply via email to