Content deleted Content added
Writ Keeper (talk | contribs) fx |
Writ Keeper (talk | contribs) fix |
||
Line 111:
for(var i = start; i < stop; i++)
{
$(checkboxArray[i]).prop("checked", !($(checkboxArray[i]).prop("checked")));
}
}
Line 118:
for(var i = start; i > stop; i--)
{
$(checkboxArray[i]).prop("checked", !($(checkboxArray[i]).prop("checked")));
}
}
|