mirror of
https://github.com/beestat/app.git
synced 2025-06-23 15:30:43 -04:00
27 lines
637 B
JavaScript
27 lines
637 B
JavaScript
/**
|
|
* Cool score card.
|
|
*/
|
|
beestat.component.card.score.cool = function() {
|
|
this.type_ = 'cool';
|
|
beestat.component.card.score.apply(this, arguments);
|
|
};
|
|
beestat.extend(beestat.component.card.score.cool, beestat.component.card.score);
|
|
|
|
/**
|
|
* Get the title of the card.
|
|
*
|
|
* @return {string} The title of the card.
|
|
*/
|
|
beestat.component.card.score.cool.prototype.get_title_ = function() {
|
|
return 'Cool Score';
|
|
};
|
|
|
|
/**
|
|
* Get the subtitle of the card.
|
|
*
|
|
* @return {string} The title of the card.
|
|
*/
|
|
// beestat.component.card.score.cool.prototype.get_subtitle_ = function() {
|
|
// return '#hype';
|
|
// };
|