Skip to content
Snippets Groups Projects
Commit e7c9c9a3 authored by brickode's avatar brickode
Browse files

Tweaks

parent b4a3e0b4
No related branches found
No related tags found
1 merge request!4123Linting
...@@ -8,15 +8,15 @@ App.UI.View.MainLinks = function () { ...@@ -8,15 +8,15 @@ App.UI.View.MainLinks = function () {
let r = ``; let r = ``;
if (V.HeadGirl) { if (V.HeadGirl) {
/* eslint-disable */ /* eslint-disable */
var pronouns = getPronouns(V.HeadGirl); const pronouns = getPronouns(V.HeadGirl);
var he = pronouns.pronoun; const he = pronouns.pronoun;
var him = pronouns.object; const him = pronouns.object;
var his = pronouns.possessive; const his = pronouns.possessive;
var hers = pronouns.possessivePronoun; const hers = pronouns.possessivePronoun;
var himself = pronouns.objectReflexive; const himself = pronouns.objectReflexive;
var boy = pronouns.noun; const boy = pronouns.noun;
var He = capFirstChar(he); const He = capFirstChar(he);
var His = capFirstChar(his); const His = capFirstChar(his);
/* eslint-enable */ /* eslint-enable */
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment