Skip to content

Commit dea80f6

Browse files
Merge pull request #226 from amilino/master
previous and next month events moved on parent div
2 parents d77986b + 592100d commit dea80f6

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/ionic-datepicker-modal.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ <h1 class="title">{{selctedDateEpoch | date : mainObj.dateFormat}}</h1>
55
<ion-content class="ionic_datepicker_modal_content">
66
<div class="">
77
<div class="row text-center">
8-
<div class="col col-10 left_arrow">
9-
<button class="button-clear font_22px" ng-click="prevMonth()"
8+
<div class="col col-10 left_arrow" ng-click="prevMonth()">
9+
<button class="button-clear font_22px"
1010
ng-class="{'pointer_events_none':((firstDayEpoch - 86400000) < fromDate)}">
1111
<i class="icon ion-chevron-left"></i>
1212
</button>
@@ -31,8 +31,8 @@ <h1 class="title">{{selctedDateEpoch | date : mainObj.dateFormat}}</h1>
3131
</div>
3232
</div>
3333
</div>
34-
<div class="col col-10 right_arrow">
35-
<button class=" button-clear font_22px" ng-click="nextMonth()"
34+
<div class="col col-10 right_arrow" ng-click="nextMonth()">
35+
<button class=" button-clear font_22px"
3636
ng-class="{'pointer_events_none':((lastDayEpoch + 86400000)> toDate)}">
3737
<i class="icon ion-chevron-right"></i>
3838
</button>

src/ionic-datepicker-popup.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<div class="selected_date_full">{{selctedDateEpoch | date : mainObj.dateFormat}}</div>
22
<div class="date_selection">
33
<div class="row show_nav">
4-
<div class="col col-10 prev_btn_section">
5-
<button class="button-clear" ng-click="prevMonth()"
4+
<div class="col col-10 prev_btn_section" ng-click="prevMonth()">
5+
<button class="button-clear"
66
ng-class="{'pointer_events_none':((firstDayEpoch - 86400000) < fromDate)}">
77
<i class="icon ion-chevron-left"></i>
88
</button>
@@ -27,8 +27,8 @@
2727
</div>
2828
</div>
2929
</div>
30-
<div class="col col-10 next_btn_section">
31-
<button class="button-clear" ng-click="nextMonth()"
30+
<div class="col col-10 next_btn_section" ng-click="nextMonth()">
31+
<button class="button-clear"
3232
ng-class="{'pointer_events_none':((lastDayEpoch + 86400000)> toDate)}">
3333
<i class="icon ion-chevron-right"></i>
3434
</button>

0 commit comments

Comments
 (0)