mirror of
				https://github.com/flynx/pWiki.git
				synced 2025-10-30 18:40:08 +00:00 
			
		
		
		
	
		
			
	
	
		
			21 lines
		
	
	
		
			625 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			21 lines
		
	
	
		
			625 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|  | /********************************************************************** | ||
|  | *  | ||
|  | * | ||
|  | * | ||
|  | **********************************************************************/ | ||
|  | 
 | ||
|  | HTMLTextAreaElement.prototype.updateSize = function(){ | ||
|  | 	this.style.height = '' | ||
|  | 	this.style.height = this.scrollHeight + 'px'  | ||
|  | 	return this } | ||
|  | HTMLTextAreaElement.prototype.autoUpdateSize = function(){ | ||
|  | 	var that = this | ||
|  | 	this.addEventListener('input',  | ||
|  | 		function(evt){ | ||
|  | 			that.updateSize() })  | ||
|  | 	return this } | ||
|  | 
 | ||
|  | 
 | ||
|  | /********************************************************************** | ||
|  | * vim:set ts=4 sw=4 :                                                */ |