mirror of
				https://github.com/beestat/app.git
				synced 2025-10-30 17:52:25 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			517 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			517 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * Early access
 | |
|  */
 | |
| beestat.component.card.early_access = function() {
 | |
|   beestat.component.card.apply(this, arguments);
 | |
| };
 | |
| beestat.extend(beestat.component.card.early_access, beestat.component.card);
 | |
| 
 | |
| /**
 | |
|  * Decorate
 | |
|  *
 | |
|  * @param {rocket.Elements} parent
 | |
|  */
 | |
| beestat.component.card.early_access.prototype.decorate_contents_ = function(parent) {
 | |
|   parent.style('background', beestat.style.color.green.base);
 | |
|   parent.appendChild($.createElement('p').innerText('Experimental early access features below! ⤵'));
 | |
| };
 |