-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from asieduernest12/master
added feature to control the density of saccades which is also persisted
- Loading branch information
Showing
5 changed files
with
100 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,32 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link rel="stylesheet" href="style.css" /> | ||
</head> | ||
|
||
<head> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<button id="toggleBtn" class="w-100">Toggle Reading Mode</button> | ||
|
||
<button id="toggleBtn" class="w-100">Toggle Reading Mode</button> | ||
|
||
<div id="lineHeightEdit" class="w-100"> | ||
<label style="display:block" id="lineHeightLabel">Line Height</label> | ||
<div id="buttonGroup" class="w-100 flex justify-between"> | ||
<button id="lineHeightdecrease">Smaller</button> | ||
<button id="lineHeightIncrease">Bigger</button> | ||
<button id="lineHeightReset">↺</button> | ||
</div> | ||
</div> | ||
|
||
<div id="checkboxContainer"> | ||
<input type="checkbox" id="toggleReadingMode" name="toggle"> | ||
<label for="toggleReadingMode">Toggle on default</label> | ||
</div> | ||
<script src="popup.js"></script> | ||
</body> | ||
<div id="saccadesEdit" class="w-100"> | ||
<label style="display: block" id="lineHeightLabel">Saccades interval: <span id="saccadesLabelValue"></span></label> | ||
<div class="slidecontainer"> | ||
<input type="range" min="0" max="4" value="" class="slider" id="saccadesSlider" /> | ||
</div> | ||
</div> | ||
|
||
<div id="lineHeightEdit" class="w-100"> | ||
<label style="display: block" id="lineHeightLabel">Line Height</label> | ||
<div id="buttonGroup" class="w-100 flex justify-between"> | ||
<button id="lineHeightdecrease">Smaller</button> | ||
<button id="lineHeightIncrease">Bigger</button> | ||
<button id="lineHeightReset">↺</button> | ||
</div> | ||
</div> | ||
|
||
<div id="checkboxContainer"> | ||
<input type="checkbox" id="toggleReadingMode" name="toggle" /> | ||
<label for="toggleReadingMode">Toggle on default</label> | ||
</div> | ||
<script src="popup.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters