Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit f081fab

Browse files
committed
chore(datepicker): fix code style
1 parent bfec07e commit f081fab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: src/datepicker/datepicker.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ angular.module('ui.bootstrap.datepicker', ['ui.bootstrap.dateparser', 'ui.bootst
130130
return ((this.minDate && this.compare(date, this.minDate) < 0) || (this.maxDate && this.compare(date, this.maxDate) > 0) || ($attrs.dateDisabled && $scope.dateDisabled({date: date, mode: $scope.datepickerMode})));
131131
};
132132

133-
this.customClass = function( date ) {
134-
return $scope.customClass({date: date, mode: $scope.datepickerMode});
135-
};
133+
this.customClass = function( date ) {
134+
return $scope.customClass({date: date, mode: $scope.datepickerMode});
135+
};
136136

137137
// Split array into smaller arrays
138138
this.split = function(arr, size) {

0 commit comments

Comments
 (0)