mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-23 08:29:24 +08:00
24 lines
746 B
JavaScript
24 lines
746 B
JavaScript
// CaptureController对象
|
|
|
|
CaptureController = function CaptureController() {
|
|
bodavm.toolsFunc.symbolProperty(this);
|
|
if (arg != 'bobo') {
|
|
console.log_copy('CaptureController 实例化对象 --->', JSON.stringify_bo(arguments, function (k, v) {
|
|
if (v == window) {
|
|
return 'window';
|
|
} else {
|
|
return v;
|
|
}
|
|
}));
|
|
}
|
|
;
|
|
};
|
|
bodavm.toolsFunc.safeProto(CaptureController, "CaptureController");
|
|
bodavm.toolsFunc.defineProperty(CaptureController.prototype, "setFocusBehavior", {
|
|
configurable: true,
|
|
enumerable: true,
|
|
writable: true,
|
|
value: function setFocusBehavior() {
|
|
return bodavm.toolsFunc.dispatch(this, CaptureController.prototype, "CaptureController", "setFocusBehavior", arguments);
|
|
}
|
|
}); |