次のクラスを定義しようとしていますが、エラーが発生します。
エラー:dashboardFloatingPaneを宣言します:mixin#0は呼び出し可能なコンストラクターではありません。
define(["dojo/_base/declare", "dojo/dnd/move", "dojox/layout/FloatingPane"],
function(declare, move, FloatingPane){
return declare("dashboardFloatingPane", [move, FloatingPane], {
constructor: function() {
this.inherited(arguments);
this.moveable = new dojo.dnd.move.constrainedMoveable(
this.domNode, {
handle: this.focusNode,
constraints: function() {
var coordsWindow = {
l: 0,
t: 20,
w: window.innerWidth,
h: window.innerHeight
};
return coordsWindow;
}, within: true
}
);
}
});
});
私は何が欠けていますか?
どうもありがとう