Skip to content

Commit

Permalink
Merge pull request phusion#52 from olafure/master
Browse files Browse the repository at this point in the history
Turned MOD_ADLER from const to var, since IE doesn't support 'const'
  • Loading branch information
FooBarWidget committed Oct 3, 2013
2 parents f8296f2 + ae0343a commit 17eca70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/api/base.js.erb
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ if (!Juvia) {
}
Juvia.adler32 = function(data) {
const MOD_ADLER = 65521;
var MOD_ADLER = 65521; // IE doesn't support const
var a = 1, b = 0;
var index;
Expand Down

0 comments on commit 17eca70

Please sign in to comment.