-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b57bfe6
commit 818f64a
Showing
4 changed files
with
903 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
module.exports = { | ||
plus: [ | ||
{ | ||
text: 'Dezacord total', | ||
score: 1, | ||
color: 1 | ||
}, | ||
{ | ||
text: 'Dezacord', | ||
score: 2, | ||
color: 2 | ||
}, | ||
{ | ||
text: 'Nici acord, nici dezacord', | ||
score: 3, | ||
color: 3 | ||
}, | ||
{ | ||
text: 'Acord', | ||
score: 4, | ||
color: 4 | ||
}, | ||
{ | ||
text: 'Acord total', | ||
score: 5, | ||
color: 5 | ||
} | ||
], | ||
minus: [ | ||
{ | ||
text: 'Dezacord total', | ||
score: 5, | ||
color: 1 | ||
}, | ||
{ | ||
text: 'Dezacord', | ||
score: 4, | ||
color: 2 | ||
}, | ||
{ | ||
text: 'Nici acord, nici dezacord', | ||
score: 3, | ||
color: 3 | ||
}, | ||
{ | ||
text: 'Acord', | ||
score: 2, | ||
color: 4 | ||
}, | ||
{ | ||
text: 'Acord total', | ||
score: 1, | ||
color: 5 | ||
} | ||
] | ||
} |
Oops, something went wrong.