diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/dashboard/dashboard.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/dashboard/dashboard.js b/modules/dashboard/dashboard.js index 62f13a416..6a55e6cf6 100644 --- a/modules/dashboard/dashboard.js +++ b/modules/dashboard/dashboard.js @@ -32,13 +32,13 @@ Drupal.behaviors.dashboard = { empty_text = Drupal.settings.dashboard.emptyRegionTextInactive; } // We need a placeholder. - if ($('.placeholder', this).length == 0) { - $(this).append('<div class="placeholder"></div>'); + if ($('.dashboard-placeholder', this).length == 0) { + $(this).append('<div class="dashboard-placeholder"></div>'); } - $('.placeholder', this).html(empty_text); + $('.dashboard-placeholder', this).html(empty_text); } else { - $('.placeholder', this).remove(); + $('.dashboard-placeholder', this).remove(); } }); }, |