Commit 2b9aa997b946ecf61d599c5197ec1a3a8a3aa206
1 parent
f974e824
Bugs fix
Showing
1 changed file
with
6 additions
and
5 deletions
controllets/data-sevc-controllet/data-sevc-controllet.html
| ... | ... | @@ -31,6 +31,7 @@ |
| 31 | 31 | padding: 1.5em; |
| 32 | 32 | -webkit-tap-highlight-color: rgba(0,0,0,0); |
| 33 | 33 | -webkit-touch-callout: none; |
| 34 | + overflow: hidden; | |
| 34 | 35 | } |
| 35 | 36 | |
| 36 | 37 | #pages{ |
| ... | ... | @@ -534,7 +535,7 @@ |
| 534 | 535 | |
| 535 | 536 | organization : { |
| 536 | 537 | type : Number, |
| 537 | - value : 0 | |
| 538 | + value : 2 | |
| 538 | 539 | }, |
| 539 | 540 | |
| 540 | 541 | datalet_query : { |
| ... | ... | @@ -680,15 +681,15 @@ |
| 680 | 681 | |
| 681 | 682 | _onPrevClick : function() { |
| 682 | 683 | this.entryAnimation = 'slide-from-left-animation'; |
| 683 | - this.exitAnimation = 'slide-right-animation'; | |
| 684 | - this.selected = this.selected === 0 ? 2 : (this.selected - 1); | |
| 684 | + this.exitAnimation = 'slide-right-animation'; | |
| 685 | + this.selected = this.selected === 0 ? 0 : (this.selected - 1); | |
| 685 | 686 | this.assignToolbar(); |
| 686 | 687 | }, |
| 687 | 688 | |
| 688 | 689 | _onNextClick : function() { |
| 689 | 690 | this.entryAnimation = 'slide-from-right-animation'; |
| 690 | - this.exitAnimation = 'slide-left-animation'; | |
| 691 | - this.selected = this.selected === 2 ? 0 : (this.selected + 1); | |
| 691 | + this.exitAnimation = 'slide-left-animation'; | |
| 692 | + this.selected = this.selected === 2 ? 2 : (this.selected + 1); | |
| 692 | 693 | this.assignToolbar(); |
| 693 | 694 | }, |
| 694 | 695 | ... | ... |