diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-13 23:15:09 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-13 23:15:09 +0000 |
commit | b77475baf5eee88f7ca08adaf53c7c5eda6aca58 (patch) | |
tree | 4a1bf4029dc06956ceaa9c7373dbabb85e4dc3d0 /modules/block | |
parent | 35794257c39c915f15c23b968cd9edd166a12696 (diff) | |
download | brdo-b77475baf5eee88f7ca08adaf53c7c5eda6aca58.tar.gz brdo-b77475baf5eee88f7ca08adaf53c7c5eda6aca58.tar.bz2 |
#360081 by quicksketch: Stop using global variables for JavaScript settings.
Diffstat (limited to 'modules/block')
-rw-r--r-- | modules/block/block.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/block/block.js b/modules/block/block.js index c9c00fab2..f095c3dbc 100644 --- a/modules/block/block.js +++ b/modules/block/block.js @@ -8,7 +8,7 @@ * objects initialized in that behavior to update the row. */ Drupal.behaviors.blockDrag = { - attach: function(context) { + attach: function(context, settings) { var table = $('table#blocks'); var tableDrag = Drupal.tableDrag.blocks; // Get the blocks tableDrag object. |