home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 July / Chip_2000-07_cd.bin / servis / tipy / web / resize.js < prev    next >
Text File  |  1999-11-22  |  522b  |  21 lines

  1. /**
  2.  * resize.js 0.3 970811
  3.  * by gary smith
  4.  * js component for "reloading page onResize"
  5.  */
  6.  
  7. if(!window.saveInnerWidth) {
  8.   window.onresize = resize;
  9.   window.saveInnerWidth = window.innerWidth;
  10.   window.saveInnerHeight = window.innerHeight;
  11. }
  12.  
  13. function resize() {
  14.     if (saveInnerWidth < window.innerWidth || 
  15.         saveInnerWidth > window.innerWidth || 
  16.         saveInnerHeight > window.innerHeight || 
  17.         saveInnerHeight < window.innerHeight ) 
  18.     {
  19.         window.history.go(0);
  20.     }
  21. }