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
/
filDBCFA92594FF1F18F5248F8F0AD6B3DF
< prev
next >
Wrap
Text File
|
2010-07-12
|
424b
|
15 lines
XB.UI.Behaviour.Attribute = XB.UI.Behaviour.extend({
append: function () {
},
build: function() {
this.on(this.node, "DOMSubtreeModified", this.onModified, false, this);
this.base();
},
onModified: function() {
var name = this.element.getAttribute("name");
var value = this.node.textContent;
this.parent.setAttribute(name, value);
}
});