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 1807256 commit 41fef99Copy full SHA for 41fef99
BeliefExplorer.html
@@ -22,13 +22,11 @@
22
history.pushState(sectionName, "", locationNoVars + "?q="+sectionName);
23
Process(sectionName, itemChosen)
24
}
25
-
26
27
var timerId = -1;
28
29
function setQuestion(text, done)
30
{
31
32
text = text.replace(/\\n/g, "<br />");
33
var c = 1;
34
var cursorBlinks=0;
@@ -146,7 +144,11 @@
146
144
locationNoVars = splitUrl[0]
147
145
if (splitUrl.length==2)
148
149
- startingPoint = splitUrl[1].split("=")[1];
+ var params = splitUrl[1].split("=")
+ if (params[0]=="q")
+ {
150
+ startingPoint = splitUrl[1].split("=")[1];
151
+ }
152
153
154
history.replaceState(startingPoint, "", locationNoVars + "?q="+startingPoint);
0 commit comments