diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-02-21 10:47:25 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-02-21 10:47:25 +0000 |
commit | 915ad30e69a1b277b11a52df8f675d259756202d (patch) | |
tree | ad32bcd0d0aac829ea53c8f6a5c18f6ebfd4c345 | |
parent | 72073b959487260755da4ccbb8fca445a8179cbb (diff) | |
download | brdo-915ad30e69a1b277b11a52df8f675d259756202d.tar.gz brdo-915ad30e69a1b277b11a52df8f675d259756202d.tar.bz2 |
- Patch #720506 by Jacine: fixed invalid markup.
-rw-r--r-- | modules/dashboard/dashboard.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dashboard/dashboard.js b/modules/dashboard/dashboard.js index e1fd13e80..e8f84dc1d 100644 --- a/modules/dashboard/dashboard.js +++ b/modules/dashboard/dashboard.js @@ -6,7 +6,7 @@ */ Drupal.behaviors.dashboard = { attach: function () { - $('#dashboard').prepend('<div class="customize"><ul class="action-links"><a href="#">' + Drupal.t('Customize dashboard') + '</a></ul><div class="canvas"></div></div>'); + $('#dashboard').prepend('<div class="customize"><ul class="action-links"><li><a href="#">' + Drupal.t('Customize dashboard') + '</a></li></ul><div class="canvas"></div></div>'); $('#dashboard .customize .action-links a').click(Drupal.behaviors.dashboard.enterCustomizeMode); if ($('#dashboard .region .block').length == 0) { Drupal.settings.dashboard.launchCustomize = true; |