Skip to content

Commit 7049c79

Browse files
committed
Code style/formatting fixes
1 parent a660e7b commit 7049c79

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/models/LanguageModel.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default class LanguageModel {
1212
this.shiftKey = 'Shift'
1313
this.ok = 'OK'
1414
this.continue = 'Continue'
15-
this.pressEnter = 'Press :enterKey';
15+
this.pressEnter = 'Press :enterKey'
1616
this.multipleChoiceHelpText = 'Choose as many as you like'
1717
this.otherPrompt = 'Other'
1818
this.placeholder = 'Type your answer here...'
@@ -31,10 +31,9 @@ export default class LanguageModel {
3131
this.ariaMultipleChoice = 'Press :letter to select'
3232
this.ariaTypeAnswer = 'Type your answer here'
3333

34-
35-
3634
Object.assign(this, options || {})
37-
}
35+
}
36+
3837
/**
3938
* Inserts a new CSS class into the language model string to format the :string
4039
* Use it in a component's v-html directive: v-html="language.formatString(language.languageString)"
@@ -44,6 +43,7 @@ export default class LanguageModel {
4443
if (this[word]) {
4544
return '<span class="f-uppercase">' + this[word] + '</span>'
4645
}
46+
4747
return match
4848
})
4949
}

0 commit comments

Comments
 (0)