|
|
@ -40,14 +40,17 @@ |
|
|
|
setInterval(function () { |
|
|
|
setInterval(function () { |
|
|
|
context.toggle(); |
|
|
|
context.toggle(); |
|
|
|
}, 1000); |
|
|
|
}, 1000); |
|
|
|
BI.watch(context, "expand", function () { |
|
|
|
// BI.watch(context, "expand", function () { |
|
|
|
label.setText(context.model.text); |
|
|
|
// label.setText(context.model.text); |
|
|
|
}); |
|
|
|
// }); |
|
|
|
return { |
|
|
|
return { |
|
|
|
type: "bi.label", |
|
|
|
type: "bi.label", |
|
|
|
ref: function (_ref) { |
|
|
|
ref: function (_ref) { |
|
|
|
label = _ref; |
|
|
|
label = _ref; |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
effect: function (w) { |
|
|
|
|
|
|
|
w.setText(context.model.text) |
|
|
|
|
|
|
|
}, |
|
|
|
text: function () { |
|
|
|
text: function () { |
|
|
|
return context.model.text; |
|
|
|
return context.model.text; |
|
|
|
} |
|
|
|
} |
|
|
|