diff options
| author | Aymeric Augustin | 2013-11-24 11:00:43 +0100 | 
|---|---|---|
| committer | Aymeric Augustin | 2013-11-24 11:01:44 +0100 | 
| commit | e7692b33ca7fd3f7704d283d6b1368cdea198d59 (patch) | |
| tree | 57d6954f16cd5b7b4b04331cf49eafc72e602137 /debug_toolbar/static | |
| parent | a8a98ddde93d1427d2c431cb3f0b18cdfe87616a (diff) | |
| download | django-debug-toolbar-e7692b33ca7fd3f7704d283d6b1368cdea198d59.tar.bz2 | |
Rename storage to store to avoid conflicting with Django terminology.
Diffstat (limited to 'debug_toolbar/static')
| -rw-r--r-- | debug_toolbar/static/debug_toolbar/js/toolbar.js | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/debug_toolbar/static/debug_toolbar/js/toolbar.js b/debug_toolbar/static/debug_toolbar/js/toolbar.js index 3525f31..6b5dffd 100644 --- a/debug_toolbar/static/debug_toolbar/js/toolbar.js +++ b/debug_toolbar/static/debug_toolbar/js/toolbar.js @@ -27,12 +27,12 @@                  } else {                      $('.panelContent').hide(); // Hide any that are already open                      var inner = current.find('.djDebugPanelContent .scroll'), -                        storage_id = $('#djDebug').data('storage-id'), +                        store_id = $('#djDebug').data('store-id'),                          render_panel_url = $('#djDebug').data('render-panel-url'); -                    if (storage_id !== '' && inner.children().length === 0) { +                    if (store_id !== '' && inner.children().length === 0) {                          var ajax_data = {                              data: { -                                storage_id: storage_id, +                                store_id: store_id,                                  panel_id: this.className                              },                              type: 'GET',  | 
