Skip to content

Commit 62a8f0f

Browse files
committed
Merge pull request #70 from Rossie/master
Fix null pointer error when none is selected.
2 parents 56c0119 + eab4e5b commit 62a8f0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/angular-material-calendar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ angular.module("materialCalendar").directive("calendarMd", ["$compile", "$parse"
287287
var match;
288288
var active = angular.copy($scope.active);
289289
if (!angular.isArray(active)) {
290-
if (angular.equals(active.getYear(), date.getYear()) && angular.equals(active.getMonth(), date.getMonth()) && angular.equals(active.getDate(), date.getDate())) {
290+
if (active && angular.equals(active.getYear(), date.getYear()) && angular.equals(active.getMonth(), date.getMonth()) && angular.equals(active.getDate(), date.getDate())) {
291291
match = true;
292292
}
293293
} else {

0 commit comments

Comments
 (0)