1
0
mirror of https://github.com/beestat/app.git synced 2025-06-23 15:30:43 -04:00
2019-05-22 21:22:24 -04:00

27 lines
637 B
JavaScript

/**
* Cool score card.
*/
beestat.component.card.score.heat = function() {
this.type_ = 'heat';
beestat.component.card.score.apply(this, arguments);
};
beestat.extend(beestat.component.card.score.heat, beestat.component.card.score);
/**
* Get the title of the card.
*
* @return {string} The title of the card.
*/
beestat.component.card.score.heat.prototype.get_title_ = function() {
return 'Heat Score';
};
/**
* Get the subtitle of the card.
*
* @return {string} The title of the card.
*/
// beestat.component.card.score.heat.prototype.get_subtitle_ = function() {
// return '#hype';
// };