We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c19b2f2 commit e1e107dCopy full SHA for e1e107d
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "webuilder",
3
- "version": "1.0.3",
+ "version": "1.0.4",
4
"description": "frontend kit for typescript and javascript",
5
"homepage": "https://git.jeyserver.com/webuilder/npm",
6
"license": "MIT",
src/ts/Router.ts
@@ -121,7 +121,8 @@ export class Router{
121
}
122
public static getAjaxFormURL(link:string) :string {
123
let url = new URL(link);
124
- url.searchparams.set('ajax', "1");
+ // https://github.com/Microsoft/TypeScript/issues/14399
125
+ (url as any).searchparams.set('ajax', "1");
126
return url.toString();
127
128
0 commit comments