From 57584dc4744fea59833ef355f7513690d246c70f Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Tue, 4 Oct 2011 18:25:23 -0400 Subject: more porting work --- extensions/GuidedBugEntry/web/js/guided.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extensions/GuidedBugEntry/web/js') diff --git a/extensions/GuidedBugEntry/web/js/guided.js b/extensions/GuidedBugEntry/web/js/guided.js index f600dbb21..e3efd6446 100644 --- a/extensions/GuidedBugEntry/web/js/guided.js +++ b/extensions/GuidedBugEntry/web/js/guided.js @@ -162,8 +162,7 @@ var product = { // show support message if (products[productName] && products[productName].support) { - Dom.get("product_support_message").innerHTML = - YAHOO.lang.escapeHTML(products[productName].support); + Dom.get("product_support_message").innerHTML = products[productName].support; Dom.removeClass("product_support", "hidden"); } else { Dom.addClass("product_support", "hidden"); @@ -251,6 +250,7 @@ var dupes = { this._elList = Dom.get('dupes_list'); Event.onBlur(this._elSummary, this._onSummaryBlur); + Event.addListener(this._elSummary, 'input', this._onSummaryBlur); Event.addListener(this._elSummary, 'keydown', this._onSummaryKeyDown); Event.addListener(this._elSummary, 'keyup', this._onSummaryKeyUp); Event.addListener(this._elSearch, 'click', this._doSearch); -- cgit v1.2.3-24-g4f1b