Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonaaron committed Dec 23, 2008
1 parent b450f9f commit 8581774
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jquery.each_slice.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jQuery.fn.each_slice = function(num, fn) {
for ( var i=0,count=0,slice=[]; i<=this.length; i++ ) {
if ( count >= num ) {
fn.apply( jQuery( slice ) );
count = 0, slice=[];
count=0, slice=[];
}
slice.push( this[i] );
count++;
Expand Down

0 comments on commit 8581774

Please sign in to comment.