Disable ws comments in IE

This commit is contained in:
Rachel Fenichel
2018-05-21 15:12:09 -07:00
parent c8b7b4a6a1
commit efd55e5d4f

View File

@@ -388,7 +388,11 @@ Blockly.ContextMenu.workspaceCommentOption = function(ws, e) {
}
};
var wsCommentOption = {enabled: true};
var wsCommentOption = {
// Foreign objects don't work in IE. Don't let the user create comments
// that they won't be able to edit.
enabled: !goog.userAgent.IE
};
wsCommentOption.text = Blockly.Msg.ADD_COMMENT;
wsCommentOption.callback = function() {
addWsComment();