Aleksander Machniak
2013-10-30 c511f5d7c855b915baac7a014fbfaba974323537
Eliminate "blinking" loading icon in browser on messages selection
- do not assign location.href to the same value as it is
1 files modified
2 ■■■■■ changed files
program/js/app.js 2 ●●●●● patch | view | raw | blame | history
program/js/app.js
@@ -2062,6 +2062,7 @@
    if (name && (frame = this.get_frame_element(name))) {
      if (!show && (win = this.get_frame_window(name))) {
        if (win.location.href.indexOf(this.env.blankpage) < 0) {
        if (win.stop)
          win.stop();
        else // IE
@@ -2069,6 +2070,7 @@
        win.location.href = this.env.blankpage;
      }
      }
      else if (!bw.safari && !bw.konq)
        $(frame)[show ? 'show' : 'hide']();
    }