From 418a7e621dcefc26e9ee2de85ed88916833ebbbe Mon Sep 17 00:00:00 2001 From: Neil Fraser Date: Thu, 21 Apr 2016 05:57:26 -0700 Subject: [PATCH] Revert "Add option to set id on toolbox" --- core/toolbox.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/toolbox.js b/core/toolbox.js index f31f8840d..3951c107d 100644 --- a/core/toolbox.js +++ b/core/toolbox.js @@ -202,10 +202,6 @@ Blockly.Toolbox.prototype.populate_ = function(newTree) { var childOut = rootOut.createNode(childIn.getAttribute('name')); childOut.blocks = []; treeOut.add(childOut); - var customId = childIn.getAttribute('id'); - if (customId) { - childOut.setId(customId); - } var custom = childIn.getAttribute('custom'); if (custom) { // Variables and procedures are special dynamic categories.