diff --git a/web/skins/classic/js/jquery-ui-1.11.3.js b/web/skins/classic/js/jquery-ui-1.11.3.js index 8f0e80254..2319a4e4b 100644 --- a/web/skins/classic/js/jquery-ui-1.11.3.js +++ b/web/skins/classic/js/jquery-ui-1.11.3.js @@ -5423,8 +5423,8 @@ $.extend(Datepicker.prototype, { prev = (this._canAdjustMonth(inst, -1, drawYear, drawMonth) ? "" + prevText + "" : - (hideIfNoPrevNext ? "" : "" + prevText + "")); + " title='" + prevText + "'>" : + (hideIfNoPrevNext ? "" : "")); nextText = this._get(inst, "nextText"); nextText = (!navigationAsDateFormat ? nextText : this.formatDate(nextText, @@ -5433,8 +5433,8 @@ $.extend(Datepicker.prototype, { next = (this._canAdjustMonth(inst, +1, drawYear, drawMonth) ? "" + nextText + "" : - (hideIfNoPrevNext ? "" : "" + nextText + "")); + " title='" + nextText + "'>" : + (hideIfNoPrevNext ? "" : "")); currentText = this._get(inst, "currentText"); gotoDate = (this._get(inst, "gotoCurrent") && inst.currentDay ? currentDate : today);