From e7692b33ca7fd3f7704d283d6b1368cdea198d59 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sun, 24 Nov 2013 11:00:43 +0100 Subject: Rename storage to store to avoid conflicting with Django terminology. --- debug_toolbar/static/debug_toolbar/js/toolbar.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'debug_toolbar/static') 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', -- cgit v1.2.3