forked from fanruan/bi-starter-latest
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
243 B
6 lines
243 B
6 years ago
|
BI.Plugin.registerObject("bi.show.widget.image", function (widget) {
|
||
|
widget.img.un(BI.ImageButton.EVENT_CHANGE);
|
||
|
widget.img.element.on("click", function () {
|
||
|
location.href = BI.Format.formatAddress("www.baidu.com");
|
||
|
});
|
||
|
});
|