aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/static
diff options
context:
space:
mode:
Diffstat (limited to 'debug_toolbar/static')
-rw-r--r--debug_toolbar/static/debug_toolbar/js/toolbar.js6
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',