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