Aleksander Machniak
2013-11-20 4c8491275c42c75655ad3b1833b501a405868379
Small fixes: variable scope
1 files modified
4 ■■■■ changed files
program/js/app.js 4 ●●●● patch | view | raw | blame | history
program/js/app.js
@@ -1708,7 +1708,7 @@
    url += (url.match(/\?/) ? '&' : '?') + '_extwin=1';
    if (this.env.standard_windows)
      extwin = window.open(url, wname);
      var extwin = window.open(url, wname);
    else {
      var win = this.is_framed() ? parent.window : window,
        page = $(win),
@@ -1729,7 +1729,7 @@
    }
    // focus window, delayed to bring to front
    window.setTimeout(function() { extwin.focus(); }, 10);
    window.setTimeout(function() { extwin && extwin.focus(); }, 10);
    return extwin;
  };