forked from anistuhin/pathwise
-
Notifications
You must be signed in to change notification settings - Fork 1
/
student-computer.htm
1176 lines (1171 loc) · 42.5 KB
/
student-computer.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Pathwise - Building Green</title>
<!-- This snippet is used in production (included from viewer.html) -->
<link
rel="resource"
type="application/l10n"
href="locale/locale.properties"
/>
<link rel="stylesheet" type="text/css" href="viewer.css" />
<link rel="stylesheet" type="text/css" href="assets/styles-working.css" />
<link rel="icon" type="image/x-icon" href="assets/icons/favicon.png" />
<script type="text/javascript" src="assets/articles.js"></script>
</head>
<body class="student-facing">
<div id="splash">
<div class="brand">PATHWiSE</div>
<div>
<div id="group-name">
<p>Select group: <span></span></p>
<ul></ul>
</div>
<input type="text" id="group-password" />
<button id="login">Login</button>
<button id="guest-login">Guest Login</button>
</div>
</div>
<nav id="primary-nav">
<!-- Navigation -->
<div class="container">
<div class="brand">PATHWiSE</div>
<div id="article-menu">
<p>Article Selected: <span></span></p>
<ul></ul>
</div>
<div id="version-container" class="temporary-hidden">
<div id="version-button">
<div id="version-button-text">+</div>
</div>
<div class="temporary-hidden">
<div id="article-version">Article Version: 1</div>
<div class="vl"></div>
<div id="group-version">Group: 1</div>
</div>
</div>
<div id="nav-right">
<div id="resume" class="temporary-hidden">Resume</div>
<button id="save-btn">Save</button>
<div id="user-profile">
<div id="user-profile-menu">
<!-- class="temporary-hidden" -->
<div id="user-profile-menu-top">
<div id="user-profile-menu-icon"></div>
<div id="user-profile-menu-details">
<div id="user-profile-menu-header" style="font-weight: bold">
Profile Name
</div>
<p>[email protected]</p>
<p>Teacher</p>
</div>
</div>
<ul>
<li>Dashboard</li>
<li>Settings</li>
<li id="logout">Logout</li>
</ul>
</div>
</div>
</div>
</div>
</nav>
<main data-comments="1" data-comments-toggle="1">
<div class="container">
<!------------
--------------
MAIN CONTENT
--------------
-------------- -->
<div id="main-content-wrapper">
<div id="meta-data">
<p class="temporary-hidden" id="assignment-title">
Explanet Article
</p>
<ul class="temporary-hidden" id="assignment-details">
<li>Level: 1</li>
<li>Assigned: [date]</li>
<li>Due: [date]</li>
</ul>
</div>
<div id="main-content">
<div id="editor">
<!-- Editable area, allows drop -->
<div id="editor-body">
<div id="pages">
<!-- <iframe id="pdfjs" src="viewer.html"></iframe> -->
</div>
<!-- <div id="pages">
<div id="custom-text">
<p>Four new astronauts arrived at the International Space Station (ISS) on March 3. They’ll do six months of research. The crew includes scientists from the United States, Russia, and the United Arab Emirates (UAE). Sultan al-Neyadi is just the second person from the UAE to go to space. The four join 11 other people on the ISS.</p>
<p>The SpaceX capsule took off from Cape Canaveral, Florida, on March 2. Docking at the ISS was delayed for an hour because of a problem with the capsule’s docking hooks. The craft hovered 65 feet from the ISS as flight controllers in California made a software fix.</p>
<p>“I can’t be happier than this, seeing old friends in space, gathering as a big family,” al-Neyadi said, entering the station. “This is the essence of space exploration.”</p>
<p>Astronomers have discovered 12 more moons orbiting Jupiter. The planet’s moon count now stands at 92. That’s more than any other planet in our solar system.</p>
<p>The new moons were spotted using telescopes in Hawaii and Chile. It took scientists about a year to confirm the discovery. The moons are small, no bigger than two miles across. Jupiter has many small moons that could be pieces of bigger moons that collided with comets, asteroids, or other moons.</p>
<p>“I hope we can image one of these outer moons close-up,” says Scott Sheppard, of the Carnegie Institution for Science, in Washington, D.C. He was on the discovery team. Sheppard wants “to better determine [the moons’] origins.” He suspects more of Jupiter’s moons have yet to be found.</p>
</div>
<div id="page-1" class="page">
<img src="assets/images/1/0001.jpg">
</div>
<div id="page-2" class="page">
<img src="assets/images/1/0002.jpg">
</div>
<div id="page-3" class="page">
<img src="assets/images/1/0003.jpg">
</div>
<div id="page-4" class="page">
<img src="assets/images/1/0004.jpg">
</div>
<div id="page-5" class="page">
<img src="assets/images/1/0005.jpg">
</div>
<div id="page-6" class="page">
<img src="assets/images/1/0006.jpg">
</div>
<div id="page-7" class="page">
<img src="assets/images/1/0007.jpg">
</div>
</div> -->
</div>
</div>
</div>
<!-- main content -->
</div>
<div id="robot-column">
<!-- right sidebar -->
<div
class="temporary-disabled temporary-hidden"
id="audiences"
data-toggler="0"
data-class="a"
data-group="0"
>
<p>Group: <span>Everyone</span></p>
<ul class="audience-groups">
<li class="active" data-id="0">Everyone</li>
<li data-id="1">Reading support</li>
<li data-id="2">Science interest</li>
<li data-id="3">Sport interest</li>
<li data-id="4">None</li>
</ul>
<div class="audience-list">
<div class="audience-class">
<p>Class</p>
<ul>
<li class="selected" data-id="a">1</li>
<li data-id="b">2</li>
<li data-id="c">3</li>
</ul>
</div>
<ul class="audience-students">
<li>Name 1</li>
<li>Name 2</li>
<li class="selected">Name 3</li>
<li>Name 4</li>
<li>Name 5</li>
<li class="selected">Name 6</li>
<li>Name 7</li>
<li>Name 8</li>
<li class="selected">Name 9</li>
<li>Name 10</li>
<li>Name 11</li>
<li>Name 12</li>
<li class="selected">Name 13</li>
<li>Name 14</li>
<li>Name 15</li>
<li class="selected">Name 16</li>
<li>Name 17</li>
<li>Name 18</li>
<li>Name 19</li>
<li>Name 20</li>
<li class="selected">Name 21</li>
<li class="selected">Name 22</li>
<li class="selected">Name 23</li>
<li>Name 24</li>
<li>Name 25</li>
<li>Name 26</li>
<li>Name 27</li>
<li class="selected">Name 28</li>
<li>Name 29</li>
<li class="selected">Name 30</li>
</ul>
</div>
</div>
<div id="add-comment">
<!-- add comment section with the robot -->
<div id="comment-input">
<textarea
placeholder='"Be sure to take a good look at this part!"'
></textarea>
<button id="play">Play</button>
<!-- list of emotions generated from the data json -->
</div>
<div id="robot-emotions" class="anticipation">
</div>
</div>
</div>
</div>
</main>
<div id="outerContainer">
<div id="sidebarContainer">
<div id="toolbarSidebar">
<div id="toolbarSidebarLeft">
<div
id="sidebarViewButtons"
class="splitToolbarButton toggled"
role="radiogroup"
>
<button
id="viewThumbnail"
class="toolbarButton toggled"
title="Show Thumbnails"
tabindex="2"
data-l10n-id="thumbs"
role="radio"
aria-checked="true"
aria-controls="thumbnailView"
>
<span data-l10n-id="thumbs_label">Thumbnails</span>
</button>
<button
id="viewOutline"
class="toolbarButton"
title="Show Document Outline (double-click to expand/collapse all items)"
tabindex="3"
data-l10n-id="document_outline"
role="radio"
aria-checked="false"
aria-controls="outlineView"
>
<span data-l10n-id="document_outline_label"
>Document Outline</span
>
</button>
<button
id="viewAttachments"
class="toolbarButton"
title="Show Attachments"
tabindex="4"
data-l10n-id="attachments"
role="radio"
aria-checked="false"
aria-controls="attachmentsView"
>
<span data-l10n-id="attachments_label">Attachments</span>
</button>
<button
id="viewLayers"
class="toolbarButton"
title="Show Layers (double-click to reset all layers to the default state)"
tabindex="5"
data-l10n-id="layers"
role="radio"
aria-checked="false"
aria-controls="layersView"
>
<span data-l10n-id="layers_label">Layers</span>
</button>
</div>
</div>
<div id="toolbarSidebarRight">
<div id="outlineOptionsContainer" class="hidden">
<div class="verticalToolbarSeparator"></div>
<button
id="currentOutlineItem"
class="toolbarButton"
disabled="disabled"
title="Find Current Outline Item"
tabindex="6"
data-l10n-id="current_outline_item"
>
<span data-l10n-id="current_outline_item_label"
>Current Outline Item</span
>
</button>
</div>
</div>
</div>
<div id="sidebarContent">
<div id="thumbnailView"></div>
<div id="outlineView" class="hidden"></div>
<div id="attachmentsView" class="hidden"></div>
<div id="layersView" class="hidden"></div>
</div>
<div id="sidebarResizer"></div>
</div>
<!-- sidebarContainer -->
<div id="mainContainer">
<div class="findbar hidden doorHanger" id="findbar">
<div id="findbarInputContainer">
<input
id="findInput"
class="toolbarField"
title="Find"
placeholder="Find in document…"
tabindex="91"
data-l10n-id="find_input"
aria-invalid="false"
/>
<div class="splitToolbarButton">
<button
id="findPrevious"
class="toolbarButton"
title="Find the previous occurrence of the phrase"
tabindex="92"
data-l10n-id="find_previous"
>
<span data-l10n-id="find_previous_label">Previous</span>
</button>
<div class="splitToolbarButtonSeparator"></div>
<button
id="findNext"
class="toolbarButton"
title="Find the next occurrence of the phrase"
tabindex="93"
data-l10n-id="find_next"
>
<span data-l10n-id="find_next_label">Next</span>
</button>
</div>
</div>
<div id="findbarOptionsOneContainer">
<input
type="checkbox"
id="findHighlightAll"
class="toolbarField"
tabindex="94"
/>
<label
for="findHighlightAll"
class="toolbarLabel"
data-l10n-id="find_highlight"
>Highlight All</label
>
<input
type="checkbox"
id="findMatchCase"
class="toolbarField"
tabindex="95"
/>
<label
for="findMatchCase"
class="toolbarLabel"
data-l10n-id="find_match_case_label"
>Match Case</label
>
</div>
<div id="findbarOptionsTwoContainer">
<input
type="checkbox"
id="findMatchDiacritics"
class="toolbarField"
tabindex="96"
/>
<label
for="findMatchDiacritics"
class="toolbarLabel"
data-l10n-id="find_match_diacritics_label"
>Match Diacritics</label
>
<input
type="checkbox"
id="findEntireWord"
class="toolbarField"
tabindex="97"
/>
<label
for="findEntireWord"
class="toolbarLabel"
data-l10n-id="find_entire_word_label"
>Whole Words</label
>
</div>
<div id="findbarMessageContainer" aria-live="polite">
<span id="findResultsCount" class="toolbarLabel"></span>
<span id="findMsg" class="toolbarLabel"></span>
</div>
</div>
<!-- findbar -->
<div
class="editorParamsToolbar hidden doorHangerRight"
id="editorFreeTextParamsToolbar"
>
<div class="editorParamsToolbarContainer">
<div class="editorParamsSetter">
<label
for="editorFreeTextColor"
class="editorParamsLabel"
data-l10n-id="editor_free_text_color"
>Color</label
>
<input
type="color"
id="editorFreeTextColor"
class="editorParamsColor"
tabindex="100"
/>
</div>
<div class="editorParamsSetter">
<label
for="editorFreeTextFontSize"
class="editorParamsLabel"
data-l10n-id="editor_free_text_size"
>Size</label
>
<input
type="range"
id="editorFreeTextFontSize"
class="editorParamsSlider"
value="10"
min="5"
max="100"
step="1"
tabindex="101"
/>
</div>
</div>
</div>
<div
class="editorParamsToolbar hidden doorHangerRight"
id="editorInkParamsToolbar"
>
<div class="editorParamsToolbarContainer">
<div class="editorParamsSetter">
<label
for="editorInkColor"
class="editorParamsLabel"
data-l10n-id="editor_ink_color"
>Color</label
>
<input
type="color"
id="editorInkColor"
class="editorParamsColor"
tabindex="102"
/>
</div>
<div class="editorParamsSetter">
<label
for="editorInkThickness"
class="editorParamsLabel"
data-l10n-id="editor_ink_thickness"
>Thickness</label
>
<input
type="range"
id="editorInkThickness"
class="editorParamsSlider"
value="1"
min="1"
max="20"
step="1"
tabindex="103"
/>
</div>
<div class="editorParamsSetter">
<label
for="editorInkOpacity"
class="editorParamsLabel"
data-l10n-id="editor_ink_opacity"
>Opacity</label
>
<input
type="range"
id="editorInkOpacity"
class="editorParamsSlider"
value="100"
min="1"
max="100"
step="1"
tabindex="104"
/>
</div>
</div>
</div>
<div
id="secondaryToolbar"
class="secondaryToolbar hidden doorHangerRight"
>
<div id="secondaryToolbarButtonContainer">
<button
id="secondaryOpenFile"
class="secondaryToolbarButton visibleLargeView"
title="Open File"
tabindex="51"
data-l10n-id="open_file"
>
<span data-l10n-id="open_file_label">Open</span>
</button>
<button
id="secondaryPrint"
class="secondaryToolbarButton visibleMediumView"
title="Print"
tabindex="52"
data-l10n-id="print"
>
<span data-l10n-id="print_label">Print</span>
</button>
<button
id="secondaryDownload"
class="secondaryToolbarButton visibleMediumView"
title="Save"
tabindex="53"
data-l10n-id="save"
>
<span data-l10n-id="save_label">Save</span>
</button>
<div class="horizontalToolbarSeparator visibleLargeView"></div>
<button
id="presentationMode"
class="secondaryToolbarButton"
title="Switch to Presentation Mode"
tabindex="54"
data-l10n-id="presentation_mode"
>
<span data-l10n-id="presentation_mode_label"
>Presentation Mode</span
>
</button>
<a
href="#"
id="viewBookmark"
class="secondaryToolbarButton"
title="Current Page (View URL from Current Page)"
tabindex="55"
data-l10n-id="bookmark1"
>
<span data-l10n-id="bookmark1_label">Current Page</span>
</a>
<div
id="viewBookmarkSeparator"
class="horizontalToolbarSeparator"
></div>
<button
id="firstPage"
class="secondaryToolbarButton"
title="Go to First Page"
tabindex="56"
data-l10n-id="first_page"
>
<span data-l10n-id="first_page_label">Go to First Page</span>
</button>
<button
id="lastPage"
class="secondaryToolbarButton"
title="Go to Last Page"
tabindex="57"
data-l10n-id="last_page"
>
<span data-l10n-id="last_page_label">Go to Last Page</span>
</button>
<div class="horizontalToolbarSeparator"></div>
<button
id="pageRotateCw"
class="secondaryToolbarButton"
title="Rotate Clockwise"
tabindex="58"
data-l10n-id="page_rotate_cw"
>
<span data-l10n-id="page_rotate_cw_label">Rotate Clockwise</span>
</button>
<button
id="pageRotateCcw"
class="secondaryToolbarButton"
title="Rotate Counterclockwise"
tabindex="59"
data-l10n-id="page_rotate_ccw"
>
<span data-l10n-id="page_rotate_ccw_label"
>Rotate Counterclockwise</span
>
</button>
<div class="horizontalToolbarSeparator"></div>
<div id="cursorToolButtons" role="radiogroup">
<button
id="cursorSelectTool"
class="secondaryToolbarButton toggled"
title="Enable Text Selection Tool"
tabindex="60"
data-l10n-id="cursor_text_select_tool"
role="radio"
aria-checked="true"
>
<span data-l10n-id="cursor_text_select_tool_label"
>Text Selection Tool</span
>
</button>
<button
id="cursorHandTool"
class="secondaryToolbarButton"
title="Enable Hand Tool"
tabindex="61"
data-l10n-id="cursor_hand_tool"
role="radio"
aria-checked="false"
>
<span data-l10n-id="cursor_hand_tool_label">Hand Tool</span>
</button>
</div>
<div class="horizontalToolbarSeparator"></div>
<div id="scrollModeButtons" role="radiogroup">
<button
id="scrollPage"
class="secondaryToolbarButton"
title="Use Page Scrolling"
tabindex="62"
data-l10n-id="scroll_page"
role="radio"
aria-checked="false"
>
<span data-l10n-id="scroll_page_label">Page Scrolling</span>
</button>
<button
id="scrollVertical"
class="secondaryToolbarButton toggled"
title="Use Vertical Scrolling"
tabindex="63"
data-l10n-id="scroll_vertical"
role="radio"
aria-checked="true"
>
<span data-l10n-id="scroll_vertical_label"
>Vertical Scrolling</span
>
</button>
<button
id="scrollHorizontal"
class="secondaryToolbarButton"
title="Use Horizontal Scrolling"
tabindex="64"
data-l10n-id="scroll_horizontal"
role="radio"
aria-checked="false"
>
<span data-l10n-id="scroll_horizontal_label"
>Horizontal Scrolling</span
>
</button>
<button
id="scrollWrapped"
class="secondaryToolbarButton"
title="Use Wrapped Scrolling"
tabindex="65"
data-l10n-id="scroll_wrapped"
role="radio"
aria-checked="false"
>
<span data-l10n-id="scroll_wrapped_label"
>Wrapped Scrolling</span
>
</button>
</div>
<div class="horizontalToolbarSeparator"></div>
<div id="spreadModeButtons" role="radiogroup">
<button
id="spreadNone"
class="secondaryToolbarButton toggled"
title="Do not join page spreads"
tabindex="66"
data-l10n-id="spread_none"
role="radio"
aria-checked="true"
>
<span data-l10n-id="spread_none_label">No Spreads</span>
</button>
<button
id="spreadOdd"
class="secondaryToolbarButton"
title="Join page spreads starting with odd-numbered pages"
tabindex="67"
data-l10n-id="spread_odd"
role="radio"
aria-checked="false"
>
<span data-l10n-id="spread_odd_label">Odd Spreads</span>
</button>
<button
id="spreadEven"
class="secondaryToolbarButton"
title="Join page spreads starting with even-numbered pages"
tabindex="68"
data-l10n-id="spread_even"
role="radio"
aria-checked="false"
>
<span data-l10n-id="spread_even_label">Even Spreads</span>
</button>
</div>
<div class="horizontalToolbarSeparator"></div>
<button
id="documentProperties"
class="secondaryToolbarButton"
title="Document Properties…"
tabindex="69"
data-l10n-id="document_properties"
aria-controls="documentPropertiesDialog"
>
<span data-l10n-id="document_properties_label"
>Document Properties…</span
>
</button>
</div>
</div>
<!-- secondaryToolbar -->
<div class="toolbar">
<div id="toolbarContainer">
<div id="toolbarViewer">
<div id="toolbarViewerLeft">
<button
id="sidebarToggle"
class="toolbarButton"
title="Toggle Sidebar"
tabindex="11"
data-l10n-id="toggle_sidebar"
aria-expanded="false"
aria-controls="sidebarContainer"
>
<span data-l10n-id="toggle_sidebar_label"
>Toggle Sidebar</span
>
</button>
<div class="toolbarButtonSpacer"></div>
<button
id="viewFind"
class="toolbarButton"
title="Find in Document"
tabindex="12"
data-l10n-id="findbar"
aria-expanded="false"
aria-controls="findbar"
>
<span data-l10n-id="findbar_label">Find</span>
</button>
<div class="splitToolbarButton hiddenSmallView">
<button
class="toolbarButton"
title="Previous Page"
id="previous"
tabindex="13"
data-l10n-id="previous"
>
<span data-l10n-id="previous_label">Previous</span>
</button>
<div class="splitToolbarButtonSeparator"></div>
<button
class="toolbarButton"
title="Next Page"
id="next"
tabindex="14"
data-l10n-id="next"
>
<span data-l10n-id="next_label">Next</span>
</button>
</div>
<input
type="number"
id="pageNumber"
class="toolbarField"
title="Page"
value="1"
min="1"
tabindex="15"
data-l10n-id="page"
autocomplete="off"
/>
<span id="numPages" class="toolbarLabel"></span>
</div>
<div id="toolbarViewerRight">
<button
id="openFile"
class="toolbarButton hiddenLargeView"
title="Open File"
tabindex="31"
data-l10n-id="open_file"
>
<span data-l10n-id="open_file_label">Open</span>
</button>
<button
id="print"
class="toolbarButton hiddenMediumView"
title="Print"
tabindex="32"
data-l10n-id="print"
>
<span data-l10n-id="print_label">Print</span>
</button>
<button
id="download"
class="toolbarButton hiddenMediumView"
title="Save"
tabindex="33"
data-l10n-id="save"
>
<span data-l10n-id="save_label">Save</span>
</button>
<div class="verticalToolbarSeparator hiddenMediumView"></div>
<div
id="editorModeButtons"
class="splitToolbarButton toggled"
role="radiogroup"
>
<button
id="editorFreeText"
class="toolbarButton"
disabled="disabled"
title="Text"
role="radio"
aria-checked="false"
tabindex="34"
data-l10n-id="editor_free_text2"
>
<span data-l10n-id="editor_free_text2_label">Text</span>
</button>
<button
id="editorInk"
class="toolbarButton"
disabled="disabled"
title="Draw"
role="radio"
aria-checked="false"
tabindex="35"
data-l10n-id="editor_ink2"
>
<span data-l10n-id="editor_ink2_label">Draw</span>
</button>
</div>
<div
id="editorModeSeparator"
class="verticalToolbarSeparator"
></div>
<button
id="secondaryToolbarToggle"
class="toolbarButton"
title="Tools"
tabindex="48"
data-l10n-id="tools"
aria-expanded="false"
aria-controls="secondaryToolbar"
>
<span data-l10n-id="tools_label">Tools</span>
</button>
</div>
<div id="toolbarViewerMiddle">
<div class="splitToolbarButton">
<button
id="zoomOut"
class="toolbarButton"
title="Zoom Out"
tabindex="21"
data-l10n-id="zoom_out"
>
<span data-l10n-id="zoom_out_label">Zoom Out</span>
</button>
<div class="splitToolbarButtonSeparator"></div>
<button
id="zoomIn"
class="toolbarButton"
title="Zoom In"
tabindex="22"
data-l10n-id="zoom_in"
>
<span data-l10n-id="zoom_in_label">Zoom In</span>
</button>
</div>
<span id="scaleSelectContainer" class="dropdownToolbarButton">
<select
id="scaleSelect"
title="Zoom"
tabindex="23"
data-l10n-id="zoom"
>
<option
id="pageAutoOption"
title=""
value="auto"
selected="selected"
data-l10n-id="page_scale_auto"
>
Automatic Zoom
</option>
<option
id="pageActualOption"
title=""
value="page-actual"
data-l10n-id="page_scale_actual"
>
Actual Size
</option>
<option
id="pageFitOption"
title=""
value="page-fit"
data-l10n-id="page_scale_fit"
>
Page Fit
</option>
<option
id="pageWidthOption"
title=""
value="page-width"
data-l10n-id="page_scale_width"
>
Page Width
</option>
<option
id="customScaleOption"
title=""
value="custom"
disabled="disabled"
hidden="true"
></option>
<option
title=""
value="0.5"
data-l10n-id="page_scale_percent"
data-l10n-args='{ "scale": 50 }'
>
50%
</option>
<option
title=""
value="0.75"
data-l10n-id="page_scale_percent"
data-l10n-args='{ "scale": 75 }'
>
75%
</option>
<option
title=""
value="1"
data-l10n-id="page_scale_percent"
data-l10n-args='{ "scale": 100 }'
>
100%
</option>
<option
title=""
value="1.25"
data-l10n-id="page_scale_percent"
data-l10n-args='{ "scale": 125 }'
>
125%
</option>
<option
title=""
value="1.5"
data-l10n-id="page_scale_percent"
data-l10n-args='{ "scale": 150 }'
>
150%
</option>
<option
title=""
value="2"
data-l10n-id="page_scale_percent"
data-l10n-args='{ "scale": 200 }'
>
200%
</option>
<option
title=""
value="3"
data-l10n-id="page_scale_percent"
data-l10n-args='{ "scale": 300 }'
>
300%
</option>
<option
title=""
value="4"
data-l10n-id="page_scale_percent"
data-l10n-args='{ "scale": 400 }'
>
400%
</option>
</select>
</span>
</div>
</div>
<div id="loadingBar">
<div class="progress">
<div class="glimmer"></div>
</div>
</div>