|
|
@ -30,7 +30,15 @@ BI.Toast = BI.inherit(BI.Tip, { |
|
|
|
e.stopEvent(); |
|
|
|
e.stopEvent(); |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
}; |
|
|
|
}; |
|
|
|
this.element.bind({click: fn, mousedown: fn, mouseup: fn, mouseover: fn, mouseenter: fn, mouseleave: fn, mousemove: fn}); |
|
|
|
this.element.bind({ |
|
|
|
|
|
|
|
click: fn, |
|
|
|
|
|
|
|
mousedown: fn, |
|
|
|
|
|
|
|
mouseup: fn, |
|
|
|
|
|
|
|
mouseover: fn, |
|
|
|
|
|
|
|
mouseenter: fn, |
|
|
|
|
|
|
|
mouseleave: fn, |
|
|
|
|
|
|
|
mousemove: fn |
|
|
|
|
|
|
|
}); |
|
|
|
var cls = "close-font"; |
|
|
|
var cls = "close-font"; |
|
|
|
switch (o.level) { |
|
|
|
switch (o.level) { |
|
|
|
case "success": |
|
|
|
case "success": |
|
|
@ -78,7 +86,8 @@ BI.Toast = BI.inherit(BI.Tip, { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
this.text = BI.createWidget({ |
|
|
|
this.text = BI.createWidget({ |
|
|
|
type: "bi.horizontal_adapt", |
|
|
|
type: "bi.horizontal", |
|
|
|
|
|
|
|
horizontalAlign: BI.HorizontalAlign.Stretch, |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
items: items, |
|
|
|
items: items, |
|
|
|
vgap: 7, |
|
|
|
vgap: 7, |
|
|
|