Launch-special remaining: drop the total
Dynamic tier-card JS now renders "Limited: N remaining" instead of "Limited: N of M remaining". Matches the buy page (v0.2.0:36); the operator's initial launch volume stays private.
This commit is contained in:
+1
-1
@@ -1187,7 +1187,7 @@ fmt.<span class="f">Printf</span>(<span class="s">"licensed for %s, expires %s\n
|
||||
if (typeof remaining === 'number' && remaining > 0) {
|
||||
const meta = document.createElement('div');
|
||||
meta.className = 'tier-launch-meta';
|
||||
meta.textContent = 'Limited: ' + remaining + ' of ' + (fd.max_uses || 0) + ' remaining';
|
||||
meta.textContent = 'Limited: ' + remaining + ' remaining';
|
||||
card.appendChild(meta);
|
||||
}
|
||||
const orig = document.createElement('div');
|
||||
|
||||
Reference in New Issue
Block a user