diff --git a/core/modules/toolbar/js/toolbar.js b/core/modules/toolbar/js/toolbar.js
index 3a6154f..62afab9 100644
--- a/core/modules/toolbar/js/toolbar.js
+++ b/core/modules/toolbar/js/toolbar.js
@@ -46,10 +46,10 @@ var mql = {
 Drupal.behaviors.toolbar = {
   attach: function(context) {
     var options = $.extend(this.options, drupalSettings.toolbar);
-    var $onceCheck = $(context).find('#toolbar-administration').once('toolbar');
-    if ($onceCheck.length) {
-      // Assign $onceCheck to $toolbar in the closure.
-      $toolbar = $onceCheck;
+    var $newToolbar = $(context).find('#toolbar-administration').once('toolbar');
+    if ($newToolbar.length) {
+      // Update the toolbar variable we will work with.
+      $toolbar = $newToolbar;
       // Add subtrees.
       // @todo Optimize this to delay adding each subtree to the DOM until it is
       //   needed; however, take into account screen readers for determining
