From 0e573eeab20c6b59aada6a2ec28e0c263c557038 Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Tue, 16 Oct 2012 17:39:41 -0700 Subject: [PATCH] rename again due to collision --- lib/days.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/days.js b/lib/days.js index 0c7e7a2..0bb264d 100644 --- a/lib/days.js +++ b/lib/days.js @@ -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(); @@ -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 {