themes MDL-22358 Renamed sideblock class to block

This commit is contained in:
Sam Hemelryk
2010-05-06 06:16:07 +00:00
parent db38fcb759
commit 6605ff8cda
32 changed files with 198 additions and 198 deletions

View File

@@ -1048,7 +1048,7 @@ function fix_column_width(colName) {
var nodes = column.childNodes;
for(i = 0; i < nodes.length; ++i) {
if(nodes[i].className.indexOf("sideblock") != -1 ) {
if(nodes[i].className.indexOf("block") != -1 ) {
if(width < nodes[i].offsetWidth) {
width = nodes[i].offsetWidth;
}
@@ -1056,7 +1056,7 @@ function fix_column_width(colName) {
}
for(i = 0; i < nodes.length; ++i) {
if(nodes[i].className.indexOf("sideblock") != -1 ) {
if(nodes[i].className.indexOf("block") != -1 ) {
nodes[i].style.width = width + 'px';
}
}