Fix detail (function's name) & Change some placeholder

This commit is contained in:
hyonzin 2016-10-18 19:29:13 +09:00
parent 429203d314
commit 4b4e1e8e5b
2 changed files with 6 additions and 6 deletions

View file

@ -546,7 +546,7 @@ public class NotebookServer extends WebSocketServlet implements
if (subject.getUser() == user) {
continue;
}
notesInfo = generateNotebooksInfo(false, new AuthenticationInfo(user));
notesInfo = generateNotesInfo(false, new AuthenticationInfo(user));
multicastToUser(user, new Message(OP.NOTES_INFO).put("notes", notesInfo));
}
}
@ -569,7 +569,7 @@ public class NotebookServer extends WebSocketServlet implements
continue;
}
//reloaded already above; parameter - false
notesInfo = generateNotebooksInfo(false, new AuthenticationInfo(user));
notesInfo = generateNotesInfo(false, new AuthenticationInfo(user));
multicastToUser(user, new Message(OP.NOTES_INFO).put("notes", notesInfo));
}
}

View file

@ -53,7 +53,7 @@ limitations under the License.
<button type="button"
class="btn btn-default btn-xs"
ng-hide="viewOnly"
tooltip-placement="bottom" tooltip="Clone the note" data-source-note-name="{{note.name}}"
tooltip-placement="bottom" tooltip="Clone this note" data-source-note-name="{{note.name}}"
data-toggle="modal" data-target="#noteNameModal" data-clone="true"
>
<i class="fa fa-copy"></i>
@ -62,7 +62,7 @@ limitations under the License.
class="btn btn-default btn-xs"
ng-hide="viewOnly"
ng-click="exportNote()"
tooltip-placement="bottom" tooltip="Export the note">
tooltip-placement="bottom" tooltip="Export this note">
<i class="fa fa-download"></i>
</button>
</span>
@ -93,7 +93,7 @@ limitations under the License.
ng-hide="viewOnly"
ng-click="checkpointNotebook(note.checkpoint.message)"
style="margin-left: 4px;"
tooltip-placement="bottom" tooltip="Commit the note">Commit
tooltip-placement="bottom" tooltip="Commit this note">Commit
</button>
</div>
</div>
@ -130,7 +130,7 @@ limitations under the License.
class="btn btn-default btn-xs"
ng-click="removeNote(note.id)"
ng-hide="viewOnly"
tooltip-placement="bottom" tooltip="Remove the note">
tooltip-placement="bottom" tooltip="Remove this note">
<i class="icon-trash"></i>
</button>
</span>