13 lines
		
	
	
		
			239 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			239 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| function Mode(name,key = "")
 | |
| {
 | |
|   Unit.call(this);
 | |
|   
 | |
|   this.host = null;
 | |
|   this.name = name;
 | |
|   this.key = key;
 | |
| 
 | |
|   this.toString = function()
 | |
|   {
 | |
|     return "<span class='mode'>~"+this.name+(this.key ? '['+this.key+']' : '')+"</span>"
 | |
|   }
 | |
| } |