Skip to content

Commit

Permalink
fix ie old version String index bug
Browse files Browse the repository at this point in the history
fix ie old version String index bug
  • Loading branch information
iahu committed May 20, 2016
1 parent d4930d9 commit f1312ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jsonp.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ computedUrl = (params) ->

randomString = (length) ->
str = ''
str += random().toString(36)[2] while str.length < length
str += random().toString(36).slice(2, 3) while str.length < length
return str

objectToURI = (obj) ->
Expand Down

0 comments on commit f1312ac

Please sign in to comment.