mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-05 07:03:24 +01:00
removing fixme
This commit is contained in:
parent
95d1c72956
commit
e856260fbb
@ -140,6 +140,7 @@
|
|||||||
<include>ScreenManager.js</include>
|
<include>ScreenManager.js</include>
|
||||||
<include>Workspace.js</include>
|
<include>Workspace.js</include>
|
||||||
<include>ShrinkConnector.js</include>
|
<include>ShrinkConnector.js</include>
|
||||||
|
<include>Keyboard.js</include>
|
||||||
<include>DesignerKeyboard.js</include>
|
<include>DesignerKeyboard.js</include>
|
||||||
<include>Keyboard.js</include>
|
<include>Keyboard.js</include>
|
||||||
<include>TopicStyle.js</include>
|
<include>TopicStyle.js</include>
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
mindplot.DesignerKeyboard = new Class({
|
mindplot.DesignerKeyboard = new Class({
|
||||||
//Extends: mindplot.Keyboard,
|
Extends: mindplot.Keyboard,
|
||||||
Static:{
|
Static:{
|
||||||
register:function (designer) {
|
register:function (designer) {
|
||||||
this._instance = new mindplot.DesignerKeyboard(designer);
|
this._instance = new mindplot.DesignerKeyboard(designer);
|
||||||
@ -34,11 +34,6 @@ mindplot.DesignerKeyboard = new Class({
|
|||||||
this._registerEvents(designer);
|
this._registerEvents(designer);
|
||||||
},
|
},
|
||||||
|
|
||||||
//FIXME: mover al parent
|
|
||||||
addShortcut: function(shortcut, callback) {
|
|
||||||
$(document).bind('keydown', shortcut, callback);
|
|
||||||
},
|
|
||||||
|
|
||||||
_registerEvents:function (designer) {
|
_registerEvents:function (designer) {
|
||||||
|
|
||||||
// Try with the keyboard ..
|
// Try with the keyboard ..
|
||||||
|
@ -17,6 +17,12 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
mindplot.Keyboard = new Class({
|
mindplot.Keyboard = new Class({
|
||||||
|
|
||||||
initialize:function () {
|
initialize:function () {
|
||||||
|
},
|
||||||
|
|
||||||
|
addShortcut: function(shortcut, callback) {
|
||||||
|
$(document).bind('keydown', shortcut, callback);
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user