@mtgame/core 0.0.69 → 0.0.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/mtgame-core.umd.js +3 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/bundles/mtgame-core.umd.min.js +1 -1
- package/bundles/mtgame-core.umd.min.js.map +1 -1
- package/esm2015/models/team.js +4 -1
- package/esm5/models/team.js +4 -1
- package/fesm2015/mtgame-core.js +3 -0
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +3 -0
- package/fesm5/mtgame-core.js.map +1 -1
- package/package.json +1 -1
package/fesm5/mtgame-core.js
CHANGED
|
@@ -871,6 +871,9 @@ var Team = /** @class */ (function (_super) {
|
|
|
871
871
|
if (this.sport.isFootball()) {
|
|
872
872
|
classList.push('empty-logo-football');
|
|
873
873
|
}
|
|
874
|
+
if (this.sport.isHandball()) {
|
|
875
|
+
classList.push('empty-logo-handball');
|
|
876
|
+
}
|
|
874
877
|
return classList.join(' ');
|
|
875
878
|
};
|
|
876
879
|
Team.toFront = function (data) {
|