Skip to content

Instantly share code, notes, and snippets.

@mtarnovan
Created August 8, 2014 09:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mtarnovan/91d01599b306bd7d7cd2 to your computer and use it in GitHub Desktop.
Save mtarnovan/91d01599b306bd7d7cd2 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