Skip to content

Instantly share code, notes, and snippets.

@roachhd
Forked from mtarnovan/gist:91d01599b306bd7d7cd2
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roachhd/d4ce9075a67c2e135834 to your computer and use it in GitHub Desktop.
Save roachhd/d4ce9075a67c2e135834 to your computer and use it in GitHub Desktop.
@@ -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