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