theme.js 431 B

123456789101112131415
  1. /*!
  2. * Krajee Unicode Theme configuration for bootstrap-star-rating.
  3. * This file must be loaded after 'star-rating.js'.
  4. *
  5. * @see http://github.com/kartik-v/bootstrap-star-rating
  6. * @author Kartik Visweswaran <kartikv2@gmail.com>
  7. */
  8. (function ($) {
  9. "use strict";
  10. $.fn.ratingThemes['krajee-uni'] = {
  11. filledStar: '&#x2605;',
  12. emptyStar: '&#x2606;',
  13. clearButton: '&#x229d;'
  14. };
  15. })(window.jQuery);