- Add tab as option to creating a child node.
parent
65f4238c3e
commit
f8fb56e49f
|
@ -72,7 +72,11 @@ mindplot.DesignerKeyboard = new Class({
|
|||
designer.createChildForSelectedNode();
|
||||
}.bind(this),
|
||||
|
||||
'-':function () {
|
||||
'tab':function () {
|
||||
designer.createChildForSelectedNode();
|
||||
}.bind(this),
|
||||
|
||||
'-':function () { // "-" is a insert on several Browsers. Don't ask why ...
|
||||
designer.createChildForSelectedNode();
|
||||
}.bind(this),
|
||||
|
||||
|
|
|
@ -53,8 +53,8 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td><spring:message code="CREATE_CHILD_TOPIC"/></td>
|
||||
<td>Insert</td>
|
||||
<td>⌘ + Enter</td>
|
||||
<td>Insert / Tab</td>
|
||||
<td>⌘ + Enter / Tab</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><spring:message code="DELETE_TOPIC"/></td>
|
||||
|
|
Loading…
Reference in New Issue