diff options
Diffstat (limited to 'ui/widgets/calendar.js')
-rw-r--r-- | ui/widgets/calendar.js | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/ui/widgets/calendar.js b/ui/widgets/calendar.js index df919cb99..fb74f2a48 100644 --- a/ui/widgets/calendar.js +++ b/ui/widgets/calendar.js @@ -366,8 +366,8 @@ return $.widget( "ui.calendar", { _buildTitle: function() { var title = $( "<div>", { role: "alert", id: this.gridId + "-month-label" } ), - month = $( "<span>" ).text( this.viewDate.monthName() ), - year = $( "<span>" ).text( this.viewDate.year() ); + month = this._buildTitleMonth(), + year = this._buildTitleYear(); this._addClass( title, "ui-calendar-title" ) ._addClass( month, "ui-calendar-month" ) @@ -379,6 +379,14 @@ return $.widget( "ui.calendar", { .append( year ); }, + _buildTitleMonth: function() { + return $( "<span>" ).text( this.viewDate.monthName() ); + }, + + _buildTitleYear: function() { + return $( "<span>" ).text( this.viewDate.year() ); + }, + _buildGrid: function() { var table = $( "<table>", { role: "grid", |