Skip to content

Commit

Permalink
Add missing var
Browse files Browse the repository at this point in the history
  • Loading branch information
TalLevAmi committed Nov 9, 2014
1 parent 39c6658 commit ce96a20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/jquery.cloudinary.js
Expand Up @@ -499,7 +499,7 @@
var dpr_string = device_pixel_ratio_cache[dpr];
if (!dpr_string) {
// Find closest supported DPR (to work correctly with device zoom)
dpr_used = closest_above($.cloudinary.supported_dpr_values, dpr);
var dpr_used = closest_above($.cloudinary.supported_dpr_values, dpr);
dpr_string = dpr_used.toString();
if (dpr_string.match(/^\d+$/)) dpr_string += ".0";
device_pixel_ratio_cache[dpr] = dpr_string;
Expand Down

0 comments on commit ce96a20

Please sign in to comment.