10 lines
279 B
JavaScript
10 lines
279 B
JavaScript
/*
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
|
|
var aSections = BX.findChildren(document, {className: 'order_infoblock_title'},true);
|
|
|
|
for(var s in aSections)
|
|
new FastButton(aSections[s], function(){BX.toggleClass(this.parentNode,'close');},false);
|
|
|
|
}, false);
|
|
*/ |