From 08e11c168c05cca57c42c4fa5f04ce5328bc745e Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Fri, 21 Oct 2016 06:14:14 -0700 Subject: [PATCH] Issue #2818229 by patil_kunal27, DuaelFr: useless assignment in ckeditor/js/plugins/drupallink/plugin.js --- core/modules/ckeditor/js/plugins/drupallink/plugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/ckeditor/js/plugins/drupallink/plugin.js b/core/modules/ckeditor/js/plugins/drupallink/plugin.js index ff64f880ef82..9bd4dce98506 100644 --- a/core/modules/ckeditor/js/plugins/drupallink/plugin.js +++ b/core/modules/ckeditor/js/plugins/drupallink/plugin.js @@ -13,7 +13,7 @@ var parsedAttributes = {}; var domElement = element.$; - var attribute = null; + var attribute; var attributeName; for (var attrIndex = 0; attrIndex < domElement.attributes.length; attrIndex++) { attribute = domElement.attributes.item(attrIndex);