home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_4502 < prev    next >
Encoding:
Text File  |  2010-10-28  |  562 b   |  24 lines

  1. /*
  2.  * images management
  3.  * Copyright 2008 Kovid Goyal
  4.  * License: GNU GPL v3
  5.  */
  6.  
  7. function scale_images() {
  8.     $("img:visible").each(function() {
  9.         var offset = $(this).offset();
  10.         //window.py_bridge.debug(window.getComputedStyle(this, '').getPropertyValue('max-width'));
  11.         $(this).css("max-width", (window.innerWidth-offset.left-5)+"px");
  12.         $(this).css("max-height", (window.innerHeight-5)+"px");
  13.     });
  14. }
  15.  
  16. function setup_image_scaling_handlers() {
  17.    scale_images();
  18.    $(window).resize(function(){
  19.         scale_images();
  20.    });
  21. }
  22.  
  23.  
  24.