home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2011 November
/
CHIP_2011_11.iso
/
Programy
/
Narzedzia
/
AIMP2
/
aimp_2.61.583.exe
/
$TEMP
/
YandexPackSetup.msi
/
filA6F4FBFE76D5370E2664775820867367
< prev
next >
Wrap
Text File
|
2010-07-12
|
571b
|
17 lines
XB.UI.Behaviour.Image = XB.UI.Behaviour.extend({
name: "image",
nodeName: "image",
constructor: function(comment, element, widgetInstanceId, builder) {
this.base(comment, element, widgetInstanceId, builder);
},
build: function() {
this.buildFake();
this.on(this.fake, "DOMSubtreeModified", this.onModified, false, this);
},
onModified: function() {
var path = this.fake.textContent;
this.node.setAttribute("src", this.builder.resolveURI(path, this.widgetInstanceId));
}
});