Skip to content
This repository has been archived by the owner on Dec 8, 2020. It is now read-only.

Commit

Permalink
fix number of languages per column in language popup: now 8 languages…
Browse files Browse the repository at this point in the history
… in the first 3 columns
  • Loading branch information
danielnaber committed Dec 18, 2013
1 parent e8c87d6 commit 7889ac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/css/lib/dropkick/jquery.dropkick.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@

function split(a, n) {
var len = a.length, out = [], i = 0;
var size = Math.ceil(len / n);
while (i < len) {
var size = Math.ceil((len - i) / n--);
out.push(a.slice(i, i + size));
i += size;
}
Expand Down

0 comments on commit 7889ac7

Please sign in to comment.