1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-29 04:50:51 +02:00

Merge PR #890 branch 'nickvergessen/ticket/10982' into develop

* nickvergessen/ticket/10982:
  [ticket/10982] Correctly check, whether data-overlay is set
  [ticket/10982] Remove overlay on first up/down move of forums in ACP
  [ticket/10982] Allow setting dimming control overlay also as data-overlay
This commit is contained in:
Oleg Pudeyev
2012-10-16 21:47:13 -04:00
2 changed files with 5 additions and 5 deletions

View File

@@ -383,7 +383,7 @@ phpbb.ajaxify = function(options) {
return;
}
if (overlay)
if (overlay && (typeof $this.attr('data-overlay') === 'undefined' || $this.attr('data-overlay') == 'true'))
{
phpbb.loading_alert();
}