mirror of
https://github.com/lenaschimmel/queerallyear
synced 2024-11-24 20:33:02 +00:00
Fix letter coloring for standard flags.
This commit is contained in:
parent
7b0025dbfc
commit
c24f28d7bf
1 changed files with 6 additions and 3 deletions
|
@ -63,9 +63,12 @@ window.queer.initPreviewLogo = function() {
|
|||
}
|
||||
|
||||
window.queer.colorLetter = function(letter) {
|
||||
$("#"+letter).attr("value", activeColor.substring(1));
|
||||
sessionStorage.setItem(letter, activeColor.substring(1));
|
||||
previewLogo.colorLetter(letter, activeColor);
|
||||
flagName = $("#flagselect :selected").val();
|
||||
if(flagName == "Eigene Farbkombination") {
|
||||
$("#"+letter).attr("value", activeColor.substring(1));
|
||||
sessionStorage.setItem(letter, activeColor.substring(1));
|
||||
previewLogo.colorLetter(letter, activeColor);
|
||||
}
|
||||
}
|
||||
|
||||
window.queer.initArrow = function () {
|
||||
|
|
Loading…
Reference in a new issue