home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2010 November / maximum-cd-2010-11.iso / DiscContents / calibre-0.7.13.msi / file_4189 < prev    next >
Encoding:
Text File  |  2009-10-31  |  624 b   |  27 lines

  1. /*
  2.  * bookmarks management
  3.  * Copyright 2008 Kovid Goyal
  4.  * License: GNU GPL v3
  5.  */
  6.  
  7. function init_hyphenate() {
  8.     window.py_bridge.init_hyphenate();
  9. }
  10.  
  11. document.addEventListener("DOMContentLoaded", init_hyphenate, false);
  12.  
  13. function do_hyphenation(lang) {
  14.     Hyphenator.config(
  15.         {
  16.         'minwordlength'    : 6,
  17.         //'hyphenchar'     : '|',
  18.         'displaytogglebox' : false,
  19.         'remoteloading'    : false,
  20.         'onerrorhandler'   : function (e) {
  21.                                 window.py_bridge.debug(e);
  22.                             }
  23.         });
  24.     Hyphenator.hyphenate(document.body, lang);
  25. }
  26.  
  27.