Skip to content
Snippets Groups Projects
Commit c1d56a65 authored by Imran Hussain's avatar Imran Hussain
Browse files

Make jshint stop complaining

parent abde719a
No related branches found
No related tags found
2 merge requests!40Push changes from beta to live,!39Push changes from master to beta
Pipeline #
...@@ -55,9 +55,9 @@ function initCB() { ...@@ -55,9 +55,9 @@ function initCB() {
} }
// Loop through the found div elements // Loop through the found div elements
var thediv, outer, i1, i2; 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 // 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' // Create a new div, give it the original div's class attribute, and replace 'cbb' with 'cb'
outer = createElement('div'); outer = createElement('div');
outer.className = thediv.className; outer.className = thediv.className;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment