From 9d87f7fe181aa173dee00a9ea6051c6b8969a777 Mon Sep 17 00:00:00 2001
From: digital-gnome <31593470+digital-gnome@users.noreply.github.com>
Date: Sat, 16 Dec 2017 20:10:02 -0500
Subject: [PATCH] Use bootstrap icons in datepicker
---
web/skins/classic/js/jquery-ui-1.11.3.js | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
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);