IDragonfire / dzcp

repo for the final bugfree dzcp version ... please copy inc/mysql.php from your production dzcp system
www.dzcp.de
10 stars 16 forks source link

JS: Chrome Resize Bug #60

Closed IDragonfire closed 12 years ago

IDragonfire commented 12 years ago

If you press F5 into Chrome ... resize didn't work ...

http://hustoknow.blogspot.de/2010/10/chrome-and-jquery-ui-min-height-issue.html http://stackoverflow.com/questions/6504982/jquery-behaving-strange-after-page-refresh-f5-in-chrome

IDragonfire commented 12 years ago

Meine Lösung wäre:

// load global events
  $(document).ready(function() {
    DZCP.init();
    DZCP.resizeImages();
  });

durch

// load global events
  $(document).ready(function() {
    DZCP.init();
  });

// load global events
  $(document).load(function() {
    DZCP.resizeImages();
  });

erestzen. Habe allerdings gerade keinen Zugriff auf ein Live System.

xDGeForcexD commented 12 years ago

ich habs mal bei mir getestet auf chrome, firefox und ie leider funktioniert es bei keinem dadurch geht die function garnicht mehr

IDragonfire commented 12 years ago

Muss ich mir heute abend mal in Ruhe anschauen ... Habe glaubig einen Fehler gemacht ..

// load global events
  $(document).ready(function() {
    DZCP.init();
  });

// load global events
  $(window).load(function() {
    DZCP.resizeImages();
  });

geht das?

IDragonfire commented 12 years ago

so bei mir geht es ... ich checke es mal bei dir ein ;)