mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
⚡ choices lighter and work
This commit is contained in:
parent
7bc53e198d
commit
22bd836a16
@ -74,7 +74,7 @@
|
||||
<framadate-vote-choice
|
||||
[choice]="choice"
|
||||
[pollIsSpecialDate]="config.currentPoll.data.kind == 'date'"
|
||||
[simpleAnswer]="config.currentPoll.data.allowedAnswers == ['yes']" ></framadate-vote-choice >
|
||||
[simpleAnswer]="config.currentPoll.data.allowedAnswers.length == 1 " ></framadate-vote-choice >
|
||||
</div >
|
||||
</div >
|
||||
<button
|
||||
@ -108,6 +108,14 @@
|
||||
name="crname"
|
||||
[(ngModel)]='config.myName'
|
||||
id="crname" >
|
||||
<input
|
||||
type="text"
|
||||
name="cremail"
|
||||
id="email_comment"
|
||||
[(ngModel)]="config.myEmail" >
|
||||
<label for='email_comment' >
|
||||
<i class='fa fa-envelope' ></i >
|
||||
</label >
|
||||
<div >
|
||||
<label for="comment" >Votre commentaire :</label >
|
||||
<br >
|
||||
|
@ -1,5 +1,7 @@
|
||||
<div class="choicebox selection-{{choice.answer}}" ><!-- add .choicebox--active to most voted -->
|
||||
<div class="choicebox selection-{{choice.answer}}" >
|
||||
<!-- add .choicebox--active to most voted -->
|
||||
<button
|
||||
*ngIf='showChangeChoicebutton'
|
||||
class='btn btn--primary'
|
||||
(click)=' choice.simpleAnswer = !choice.simpleAnswer' >
|
||||
<i class='fa fa-gears' ></i >
|
||||
@ -55,7 +57,7 @@
|
||||
</span >
|
||||
<span
|
||||
class="complex-answers"
|
||||
*ngIf="!choice.simpleAnswer" >
|
||||
*ngIf="!simpleAnswer" >
|
||||
<button
|
||||
class="choicebox__btn choicebox__btn--maybe"
|
||||
type="button"
|
||||
|
@ -25,6 +25,7 @@ interface VoteChoice {
|
||||
})
|
||||
export class VoteChoiceComponent {
|
||||
|
||||
public showChangeChoicebutton = false;
|
||||
@Input() public choice: any;
|
||||
@Input() public simpleAnswer: boolean = true;
|
||||
@Input() public pollIsSpecialDate: boolean = false;
|
||||
|
Loading…
Reference in New Issue
Block a user