summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-31 16:48:37 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-31 16:48:37 +0000
commit730adaf7178fbf683e5f51a0d3d192edd1c423e5 (patch)
tree1c1d308fdd92d735616e5da88f5c448bafae03cf /modules
parenta244b45cfbbb22d9087ff0accf83d30e2050a618 (diff)
downloadbrdo-730adaf7178fbf683e5f51a0d3d192edd1c423e5.tar.gz
brdo-730adaf7178fbf683e5f51a0d3d192edd1c423e5.tar.bz2
#564528 by roychri: Fixed Error: 'context is not defined' in modules/toolbar/toolbar.js.
Diffstat (limited to 'modules')
-rw-r--r--modules/toolbar/toolbar.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/toolbar/toolbar.js b/modules/toolbar/toolbar.js
index c19010039..c2653d91a 100644
--- a/modules/toolbar/toolbar.js
+++ b/modules/toolbar/toolbar.js
@@ -5,7 +5,7 @@
* Implementation of Drupal.behaviors for admin.
*/
Drupal.behaviors.admin = {
- attach: function() {
+ attach: function(context) {
// Set the intial state of the toolbar.
$('#toolbar', context).once('toolbar', Drupal.admin.toolbar.init);