-
-
Save roachhd/d4ce9075a67c2e135834 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -71,7 +71,7 @@ | |
if (this.isRTL){ | |
this.picker.addClass('datepicker-rtl'); | |
this.picker.find('.prev i, .next i') | |
- .toggleClass('icon-arrow-left icon-arrow-right'); | |
+ .toggleClass('fa-arrow-left fa-arrow-right'); | |
} | |
$(document).on('mousedown', function (e) { | |
// Clicked outside the datepicker, hide it | |
@@ -951,9 +951,9 @@ | |
}, | |
headTemplate: '<thead>'+ | |
'<tr>'+ | |
- '<th class="prev"><i class="icon-arrow-left"/></th>'+ | |
+ '<th class="prev"><i class="fa fa-arrow-left"/></th>'+ | |
'<th colspan="5" class="switch"></th>'+ | |
- '<th class="next"><i class="icon-arrow-right"/></th>'+ | |
+ '<th class="next"><i class="fa fa-arrow-right"/></th>'+ | |
'</tr>'+ | |
'</thead>', | |
contTemplate: '<tbody><tr><td colspan="7"></td></tr></tbody>', |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment