Skip to content

Commit

Permalink
rename again due to collision
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Oct 17, 2012
1 parent de570e0 commit 0e573ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/days.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ Days.prototype.select = function(date){
Days.prototype.show = function(date){
var year = date.getFullYear();
var month = date.getMonth();
this.selectYear(year);
this.selectMonth(month);
this.selectedYear(year);
this.selectedMonth(month);
this.head.find('.subheading').remove();
this.head.append(this.renderHeading(2));
this.body.empty();
Expand Down Expand Up @@ -319,7 +319,7 @@ Days.prototype.selectedYear = function(year){
* @api private
*/

Days.prototype.selectMonth = function(month) {
Days.prototype.selectedMonth = function(month) {
if (this.selectMonth) {
this.title.find('.month .calendar-select').val(month);
} else {
Expand Down

0 comments on commit 0e573ee

Please sign in to comment.