forked from QupZilla/qupzilla-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Incorporation of comments from pull request.
- Loading branch information
Showing
46 changed files
with
373 additions
and
2,052 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,127 +1,127 @@ | ||
function readablilityToolbar(){ | ||
renderToolbar(); | ||
addListeners(); | ||
renderToolbar(); | ||
addListeners(); | ||
} | ||
|
||
function renderToolbar(){ | ||
var toolbar = document.createElement('div'); | ||
document.getElementById('container').appendChild(toolbar); | ||
var toolbar = document.createElement('div'); | ||
document.getElementById('container').appendChild(toolbar); | ||
|
||
toolbar.innerHTML = '<ul visible="true" id="reader-toolbar" class="toolbar"><li><button id="close-button" class="button close-button"></button></li><ul id="style-dropdown" class="dropdown"><li><button id="style-button" class="dropdown-toggle button style-button"></button></li><li style="top: 48px;" id="reader-popup" class="dropdown-popup"><div id="font-type-buttons"><button id="sans-serif-button" class="sans-serif-button selected"><div class="name">Aa</div><div class="description">Sans-serif</div></button><button id="serif-button" class="serif-button"><div class="name">Aa</div><div class="description">Serif</div></button></div><hr><div id="font-size-buttons"><button id="font-size-minus" class="minus-button"></button><button id="font-size-sample">Aa</button><button id="font-size-plus" class="plus-button"></button></div><hr><div id="color-scheme-buttons"><button id="light-button" class="light-button"><div class="name">Light</div></button><button id="dark-button" class="dark-button"><div class="name">Dark</div></button><button id="sepia-button" class="sepia-button selected"><div class="name">Sepia</div></button></div><div class="dropdown-arrow"></div></li></ul></ul>'; | ||
toolbar.innerHTML = '<ul visible="true" id="reader-toolbar" class="toolbar"><li><button id="close-button" class="button close-button"></button></li><ul id="style-dropdown" class="dropdown"><li><button id="style-button" class="dropdown-toggle button style-button"></button></li><li style="top: 48px;" id="reader-popup" class="dropdown-popup"><div id="font-type-buttons"><button id="sans-serif-button" class="sans-serif-button selected"><div class="name">Aa</div><div class="description">Sans-serif</div></button><button id="serif-button" class="serif-button"><div class="name">Aa</div><div class="description">Serif</div></button></div><hr><div id="font-size-buttons"><button id="font-size-minus" class="minus-button"></button><button id="font-size-sample">Aa</button><button id="font-size-plus" class="plus-button"></button></div><hr><div id="color-scheme-buttons"><button id="light-button" class="light-button"><div class="name">Light</div></button><button id="dark-button" class="dark-button"><div class="name">Dark</div></button><button id="sepia-button" class="sepia-button selected"><div class="name">Sepia</div></button></div><div class="dropdown-arrow"></div></li></ul></ul>'; | ||
} | ||
|
||
function addListeners(){ | ||
document.getElementById('close-button').addEventListener("click", closeReadability); | ||
document.getElementById('style-button').addEventListener("click", toolbarService); | ||
|
||
var lightButton = document.getElementById('light-button'); | ||
lightButton.addEventListener("click", function(){switchToLight(lightButton);}); | ||
var sepiaButton = document.getElementById('sepia-button'); | ||
sepiaButton.addEventListener("click", function(){switchToSepia(sepiaButton);}); | ||
var darkButton = document.getElementById('dark-button'); | ||
darkButton.addEventListener("click", function(){switchToDark(darkButton);}); | ||
|
||
var serifButton = document.getElementById('serif-button'); | ||
serifButton.addEventListener("click", function(){switchToSerif(serifButton);}); | ||
var sansSerifButton = document.getElementById('sans-serif-button'); | ||
sansSerifButton.addEventListener("click", function(){switchToSansSerif(sansSerifButton);}); | ||
|
||
var fontSizePlusButton = document.getElementById('font-size-plus'); | ||
fontSizePlusButton.addEventListener("click", fontSizePlus); | ||
var fontSizeMinusButton = document.getElementById('font-size-minus'); | ||
fontSizeMinusButton.addEventListener("click", fontSizeMinus); | ||
document.getElementById('close-button').addEventListener("click", closeReadability); | ||
document.getElementById('style-button').addEventListener("click", toolbarService); | ||
|
||
var lightButton = document.getElementById('light-button'); | ||
lightButton.addEventListener("click", function(){switchToLight(lightButton);}); | ||
var sepiaButton = document.getElementById('sepia-button'); | ||
sepiaButton.addEventListener("click", function(){switchToSepia(sepiaButton);}); | ||
var darkButton = document.getElementById('dark-button'); | ||
darkButton.addEventListener("click", function(){switchToDark(darkButton);}); | ||
|
||
var serifButton = document.getElementById('serif-button'); | ||
serifButton.addEventListener("click", function(){switchToSerif(serifButton);}); | ||
var sansSerifButton = document.getElementById('sans-serif-button'); | ||
sansSerifButton.addEventListener("click", function(){switchToSansSerif(sansSerifButton);}); | ||
|
||
var fontSizePlusButton = document.getElementById('font-size-plus'); | ||
fontSizePlusButton.addEventListener("click", fontSizePlus); | ||
var fontSizeMinusButton = document.getElementById('font-size-minus'); | ||
fontSizeMinusButton.addEventListener("click", fontSizeMinus); | ||
} | ||
|
||
function closeReadability(){ | ||
location.reload(); | ||
location.reload(); | ||
} | ||
|
||
function toolbarService(){ | ||
var element = document.getElementById('style-dropdown'); | ||
var element = document.getElementById('style-dropdown'); | ||
|
||
if(element.classList.contains('open')){ | ||
element.classList.remove('open'); | ||
} else { | ||
element.classList.add('open'); | ||
if(element.classList.contains('open')){ | ||
element.classList.remove('open'); | ||
} else { | ||
element.classList.add('open'); | ||
|
||
} | ||
} | ||
} | ||
|
||
function switchToLight(item){ | ||
document.body.classList.remove('sepia', 'dark'); | ||
document.body.classList.add('light'); | ||
|
||
var items = document.getElementById('color-scheme-buttons').children; | ||
for (var j = items.length - 1; j >= 0; j--) { | ||
items[j].classList.remove("selected"); | ||
} | ||
item.classList.add('selected'); | ||
document.body.classList.remove('sepia', 'dark'); | ||
document.body.classList.add('light'); | ||
|
||
var items = document.getElementById('color-scheme-buttons').children; | ||
for (var j = items.length - 1; j >= 0; j--) { | ||
items[j].classList.remove("selected"); | ||
} | ||
item.classList.add('selected'); | ||
} | ||
|
||
function switchToSepia(item){ | ||
document.body.classList.remove('light', 'dark'); | ||
document.body.classList.add('sepia'); | ||
|
||
var items = document.getElementById('color-scheme-buttons').children; | ||
for (var j = items.length - 1; j >= 0; j--) { | ||
items[j].classList.remove("selected"); | ||
} | ||
item.classList.add('selected'); | ||
document.body.classList.remove('light', 'dark'); | ||
document.body.classList.add('sepia'); | ||
|
||
var items = document.getElementById('color-scheme-buttons').children; | ||
for (var j = items.length - 1; j >= 0; j--) { | ||
items[j].classList.remove("selected"); | ||
} | ||
item.classList.add('selected'); | ||
} | ||
|
||
function switchToDark(item){ | ||
document.body.classList.remove('sepia', 'light'); | ||
document.body.classList.add('dark'); | ||
|
||
var items = document.getElementById('color-scheme-buttons').children; | ||
for (var j = items.length - 1; j >= 0; j--) { | ||
items[j].classList.remove("selected"); | ||
} | ||
item.classList.add('selected'); | ||
document.body.classList.remove('sepia', 'light'); | ||
document.body.classList.add('dark'); | ||
|
||
var items = document.getElementById('color-scheme-buttons').children; | ||
for (var j = items.length - 1; j >= 0; j--) { | ||
items[j].classList.remove("selected"); | ||
} | ||
item.classList.add('selected'); | ||
} | ||
|
||
function switchToSerif(item){ | ||
document.body.classList.remove('sans-serif'); | ||
document.body.classList.add('serif'); | ||
document.getElementById('sans-serif-button').classList.remove('selected'); | ||
item.classList.add('selected'); | ||
document.body.classList.remove('sans-serif'); | ||
document.body.classList.add('serif'); | ||
document.getElementById('sans-serif-button').classList.remove('selected'); | ||
item.classList.add('selected'); | ||
} | ||
|
||
function switchToSansSerif(item){ | ||
document.body.classList.remove('serif'); | ||
document.body.classList.add('sans-serif'); | ||
document.getElementById('serif-button').classList.remove('selected'); | ||
item.classList.add('selected'); | ||
document.body.classList.remove('serif'); | ||
document.body.classList.add('sans-serif'); | ||
document.getElementById('serif-button').classList.remove('selected'); | ||
item.classList.add('selected'); | ||
} | ||
|
||
function fontSizePlus(){ | ||
var container = document.getElementById('container'); | ||
var incrementedSize = 0; | ||
for (var i = 0; i < container.classList.length; i++){ | ||
if(container.classList[i].indexOf('font-size') > -1){ | ||
var size = container.classList[i].substr(-1, 1); | ||
if(parseInt(size) < 9){ | ||
incrementedSize = parseInt(size) + 1; | ||
} else return; | ||
container.classList.remove(container.classList[i]); | ||
container.classList.add('font-size' + incrementedSize); | ||
return; | ||
} | ||
} | ||
var container = document.getElementById('container'); | ||
var incrementedSize = 0; | ||
for (var i = 0; i < container.classList.length; i++){ | ||
if(container.classList[i].indexOf('font-size') > -1){ | ||
var size = container.classList[i].substr(-1, 1); | ||
if(parseInt(size) < 9){ | ||
incrementedSize = parseInt(size) + 1; | ||
} else return; | ||
container.classList.remove(container.classList[i]); | ||
container.classList.add('font-size' + incrementedSize); | ||
return; | ||
} | ||
} | ||
} | ||
|
||
function fontSizeMinus(){ | ||
var container = document.getElementById('container'); | ||
var decrementedSize = 0; | ||
for (var i = 0; i < container.classList.length; i++){ | ||
if(container.classList[i].indexOf('font-size') > -1){ | ||
var size = container.classList[i].substr(-1, 1); | ||
if(parseInt(size) > 1){ | ||
incrementedSize = parseInt(size) - 1; | ||
} else return; | ||
container.classList.remove(container.classList[i]); | ||
container.classList.add('font-size' + incrementedSize); | ||
return; | ||
} | ||
} | ||
var container = document.getElementById('container'); | ||
var decrementedSize = 0; | ||
for (var i = 0; i < container.classList.length; i++){ | ||
if(container.classList[i].indexOf('font-size') > -1){ | ||
var size = container.classList[i].substr(-1, 1); | ||
if(parseInt(size) > 1){ | ||
incrementedSize = parseInt(size) - 1; | ||
} else return; | ||
container.classList.remove(container.classList[i]); | ||
container.classList.add('font-size' + incrementedSize); | ||
return; | ||
} | ||
} | ||
} |
Oops, something went wrong.