Skip to content

Commit

Permalink
try to fix never ending loop on Safari
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Sullivan committed Nov 8, 2010
1 parent f2acd0c commit fd94298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion delivery/js/Liftium.js
Original file line number Diff line number Diff line change
Expand Up @@ -1572,7 +1572,7 @@ Liftium.print_r = function (data, level) {

// Sanity check against too much recursion
level = level || 0;
if (level > 6) { return false; }
if (level > 3) { return false; }

//The padding given at the beginning of the line.
var padding = '';
Expand Down

0 comments on commit fd94298

Please sign in to comment.