Skip to content

Commit

Permalink
Correcting Jalali/Persian calendar popup (#17432)
Browse files Browse the repository at this point in the history
  • Loading branch information
infograf768 authored and Michael Babker committed Aug 8, 2017
1 parent 87da59f commit 2d7f8dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,6 @@ Date.prototype.getJalaliDate = function() {

Date.prototype.getJalaliDay = function() {
var day = this.getDay();
day = (day + 1) % 7;
day = (day) % 7;
return day;
};

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2d7f8dd

Please sign in to comment.