-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
executable file
·22 lines (20 loc) · 1.15 KB
/
home.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="content" id="startScreen">
<p>Scriptivism measures where you fall on the <span class="pre">Prescriptivist</span> <span class="meh">/</span> <span class="de">Descriptivist</span> spectrum.</p>
<p>This is not a test to see if you know the rules of the English language, but how you personally use it. No judging here ;)</p>
<button href="#start" id="startButton">Start Quiz</button>
<p><i>Answer the questions as honestly as possible. The best way is to think as little as possible and answer instictively, just like the way you would talk or text.</i></p>
<div class="spacer"></div>
<p><a id="motionSettingsLink" href="about#settings" class="hidden">Don't like the motion?</a></p>
</div>
<script type="text/javascript">
if (mot) $('#motionSettingsLink').removeClass('hidden');
$('#motionSettingsLink').on('click', changePage('about#settings'));
$('#startButton').html(
JSON.parse(localStorage.getItem('Qprogress')).QIDs.length ?
(JSON.parse(localStorage.getItem('Qprogress')).QIDs.length !== Object.keys(questList).length ?
'Continue Quiz' :
'See Your Score') :
'Start Quiz'
)
.on('click touch', e => nextQ(1, 1))
</script>