mirror of
				https://github.com/kovidgoyal/calibre.git
				synced 2025-10-31 10:37:00 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			624 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			624 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /*
 | |
|  * bookmarks management
 | |
|  * Copyright 2008 Kovid Goyal
 | |
|  * License: GNU GPL v3
 | |
|  */
 | |
| 
 | |
| function init_hyphenate() {
 | |
|     window.py_bridge.init_hyphenate();
 | |
| }
 | |
| 
 | |
| document.addEventListener("DOMContentLoaded", init_hyphenate, false);
 | |
| 
 | |
| function do_hyphenation(lang) {
 | |
|     Hyphenator.config(
 | |
|         {
 | |
|         'minwordlength'    : 6,
 | |
|         //'hyphenchar'     : '|',
 | |
|         'displaytogglebox' : false,
 | |
|         'remoteloading'    : false,
 | |
|         'onerrorhandler'   : function (e) {
 | |
|                                 window.py_bridge.debug(e);
 | |
|                             }
 | |
|         });
 | |
|     Hyphenator.hyphenate(document.body, lang);
 | |
| }
 | |
| 
 |