Commit c1d56a65 authored by Imran Hussain's avatar Imran Hussain
Browse files

Make jshint stop complaining

parent abde719a
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -55,9 +55,9 @@ function initCB() {
    }
    // Loop through the found div elements
    var thediv, outer, i1, i2;
    for (var i = 0; i < cbDivs.length; i++) {
    for (var j = 0; j < cbDivs.length; j++) {
        // Save the original outer div for later
        thediv = cbDivs[i];
        thediv = cbDivs[j];
        // 	Create a new div, give it the original div's class attribute, and replace 'cbb' with 'cb'
        outer = createElement('div');
        outer.className = thediv.className;