Commit 2b9aa997b946ecf61d599c5197ec1a3a8a3aa206

Authored by Luigi Serra
1 parent f974e824

Bugs fix

controllets/data-sevc-controllet/data-sevc-controllet.html
@@ -31,6 +31,7 @@ @@ -31,6 +31,7 @@
31 padding: 1.5em; 31 padding: 1.5em;
32 -webkit-tap-highlight-color: rgba(0,0,0,0); 32 -webkit-tap-highlight-color: rgba(0,0,0,0);
33 -webkit-touch-callout: none; 33 -webkit-touch-callout: none;
  34 + overflow: hidden;
34 } 35 }
35 36
36 #pages{ 37 #pages{
@@ -534,7 +535,7 @@ @@ -534,7 +535,7 @@
534 535
535 organization : { 536 organization : {
536 type : Number, 537 type : Number,
537 - value : 0 538 + value : 2
538 }, 539 },
539 540
540 datalet_query : { 541 datalet_query : {
@@ -680,15 +681,15 @@ @@ -680,15 +681,15 @@
680 681
681 _onPrevClick : function() { 682 _onPrevClick : function() {
682 this.entryAnimation = 'slide-from-left-animation'; 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 this.assignToolbar(); 686 this.assignToolbar();
686 }, 687 },
687 688
688 _onNextClick : function() { 689 _onNextClick : function() {
689 this.entryAnimation = 'slide-from-right-animation'; 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 this.assignToolbar(); 693 this.assignToolbar();
693 }, 694 },
694 695