Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

$.param issue #35

Open
ray-shawn opened this issue Sep 14, 2017 · 2 comments
Open

$.param issue #35

ray-shawn opened this issue Sep 14, 2017 · 2 comments

Comments

@ray-shawn
Copy link

It lacks of method $.param when I am using qs , and also I saw you guys added a commit in file signalr-jquery-polyfill.js, could you please release it first, thanks in advance.
cors: true

+    },
+    param: (source) => {
+      let array = []
+      for(var key in source) {
+        array.push(encodeURIComponent(key) + "=" + encodeURIComponent(source[key]))
+      }
+      return array.join("&")
     }
@PanRu
Copy link

PanRu commented Sep 30, 2017

We need this too

@ray-shawn
Copy link
Author

It was addressed by latest version 1.0.6

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants