Sha256: 2e7849d409db97eda58b5c51e97de623f7a96b8ddaa20e810a5554ee911aad52

Contents?: true

Size: 713 Bytes

Versions: 68

Compression:

Stored size: 713 Bytes

Contents

// Alternate gray/white rows in all the tables having the class "striped"
function stripeTables() {
    if (!document.getElementsByTagName) {
        return false;
    }
    var tables = document.getElementsByTagName("table");
    for (var i = 0; i < tables.length; i++) {
        if (tables[i].className == "striped") {
            var gray = true;
            var rows = tables[i].getElementsByTagName("tr");
            for (var j = 0; j < rows.length; j++) {
                if (gray) {
                    rows[j].style.backgroundColor = "#f0f0f0";
                    gray = false;
                }
                else {
                    gray = true;
                }
            }
        }
    }
}

Version data entries

68 entries across 68 versions & 4 rubygems

Version Path
rmagick-1.15.14 doc/scripts/stripeTables.js
rmagick-1.15.16 doc/scripts/stripeTables.js
rmagick-1.15.17 doc/scripts/stripeTables.js
rmagick-1.15.4 doc/scripts/stripeTables.js
rmagick-1.15.3 doc/scripts/stripeTables.js
rmagick-1.15.2 doc/scripts/stripeTables.js
rmagick-1.15.6 doc/scripts/stripeTables.js
rmagick-1.15.5 doc/scripts/stripeTables.js
rmagick-1.15.8 doc/scripts/stripeTables.js
rmagick-1.15.7 doc/scripts/stripeTables.js
rmagick-1.15.9 doc/scripts/stripeTables.js
rmagick-2.2.0 doc/scripts/stripeTables.js
rmagick-2.1.0 doc/scripts/stripeTables.js
rmagick-2.3.0 doc/scripts/stripeTables.js
rmagick-2.0.0 doc/scripts/stripeTables.js
rmagick-2.2.2 doc/scripts/stripeTables.js
rmagick-2.5.2 doc/scripts/stripeTables.js
rmagick-2.5.1 doc/scripts/stripeTables.js
rmagick-2.5.0 doc/scripts/stripeTables.js
rmagick-2.6.0 doc/scripts/stripeTables.js