app/assets/javascripts/external/bootstrap-datepicker.js in contour-3.0.0.beta1 vs app/assets/javascripts/external/bootstrap-datepicker.js in contour-3.0.0.rc

- old
+ new

@@ -69,11 +69,11 @@ this.picker.addClass('datepicker-dropdown dropdown-menu'); } if (this.isRTL){ this.picker.addClass('datepicker-rtl'); this.picker.find('.prev i, .next i') - .toggleClass('icon-arrow-left icon-arrow-right'); + .toggleClass('glyphicon-triangle-left glyphicon-triangle-right'); } $(document).on('mousedown', function (e) { // Clicked outside the datepicker, hide it if ($(e.target).closest('.datepicker.datepicker-inline, .datepicker.datepicker-dropdown').length === 0) { that.hide(); @@ -944,12 +944,12 @@ } return date.join(''); }, headTemplate: '<thead>'+ '<tr>'+ - '<th class="prev"><i class="icon-arrow-left"/></th>'+ + '<th class="prev"><i class="glyphicon glyphicon-triangle-left"/></th>'+ '<th colspan="5" class="switch"></th>'+ - '<th class="next"><i class="icon-arrow-right"/></th>'+ + '<th class="next"><i class="glyphicon glyphicon-triangle-right"/></th>'+ '</tr>'+ '</thead>', contTemplate: '<tbody><tr><td colspan="7"></td></tr></tbody>', footTemplate: '<tfoot><tr><th colspan="7" class="today"></th></tr></tfoot>' };