diff --git a/core/flyout_button.js b/core/flyout_button.js index 6f8985b31..de37fe864 100644 --- a/core/flyout_button.js +++ b/core/flyout_button.js @@ -79,7 +79,9 @@ Blockly.FlyoutButton = function(workspace, targetWorkspace, xml, isLabel) { * @type {string} * @private */ - this.callbackKey_ = xml.getAttribute('callbackKey'); + this.callbackKey_ = xml.getAttribute('callbackKey') + /* Check the lower case version too to satisfy IE */ + || xml.getAttribute('callbackkey'); /** * If specified, a CSS class to add to this button.