We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fded762 commit f34de1fCopy full SHA for f34de1f
1 file changed
R/learnitdown_init.R
@@ -274,7 +274,7 @@ window.onload = function() {processParameters(); hideCode();};
274
function encodeQueryParam(name, first = false) {
275
var value = localStorage.getItem(name);
276
if (value === null || value == '') return '';
277
- var sep = first ? '' : '&';
+ var sep = first ? '?' : '&';
278
return sep + encodeURIComponent(name) + '=' + encodeURIComponent(value);
279
}
280
0 commit comments