Closed mlt closed 6 years ago
font-awesome-rails gem pulls newer version than https://github.com/werein/x-editable-rails/blob/master/vendor/assets/javascripts/editable/bootstrap-editable.js#L6110-L6112 expects. We got to replace icon-arrow-left with fa fa-arrow-left or alike. I'm not sure if that is the way to go in the light of fas vs fa in newer font awesome (v5).
icon-arrow-left
fa fa-arrow-left
fas
fa
For those looking for a quick workaround here is one ugly fix and another, or, alternatively,
$.fn.datepicker.DPGlobal.template = $.fn.datepicker.DPGlobal.template.replace(/icon-/g, "fa fa-");
vitalets/x-editable/issues/435
font-awesome-rails gem pulls newer version than https://github.com/werein/x-editable-rails/blob/master/vendor/assets/javascripts/editable/bootstrap-editable.js#L6110-L6112 expects. We got to replace
icon-arrow-left
withfa fa-arrow-left
or alike. I'm not sure if that is the way to go in the light offas
vsfa
in newer font awesome (v5).For those looking for a quick workaround here is one ugly fix and another, or, alternatively,