From 644249e9638ad6598b489ad8f6a18c8972523680 Mon Sep 17 00:00:00 2001 From: nathangray Date: Tue, 19 Mar 2019 15:55:26 -0600 Subject: [PATCH] Fix detached color widget would not set color to correct nodes --- api/js/etemplate/et2_widget_color.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/js/etemplate/et2_widget_color.js b/api/js/etemplate/et2_widget_color.js index 7985610d03..486d10bad7 100644 --- a/api/js/etemplate/et2_widget_color.js +++ b/api/js/etemplate/et2_widget_color.js @@ -264,7 +264,7 @@ var et2_color_ro = (function(){ "use strict"; return et2_valueWidget.extend([et2 setDetachedAttributes: function(_nodes, _values) { - this.span = jQuery(_nodes[0]); + this.$node = jQuery(_nodes[0]); if(typeof _values["value"] != 'undefined') { this.set_value(_values["value"]);