From 9662961e5ab7c92456d1430720cd956663a795ec Mon Sep 17 00:00:00 2001 From: phasefx Date: Thu, 5 Aug 2010 07:50:35 +0000 Subject: [PATCH] fix color highlighting for xulrunner 1.9.2 git-svn-id: svn://svn.open-ils.org/ILS/trunk@17092 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/cat/copy_editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/server/cat/copy_editor.js b/Open-ILS/xul/staff_client/server/cat/copy_editor.js index a0a2cfc31..8e2eb81b0 100644 --- a/Open-ILS/xul/staff_client/server/cat/copy_editor.js +++ b/Open-ILS/xul/staff_client/server/cat/copy_editor.js @@ -1055,11 +1055,11 @@ g.render = function() { groupbox.setAttribute(a,attr[a]); } } - if (typeof g.changed[fn] != 'undefined') groupbox.setAttribute('class','copy_editor_field_changed'); caption = document.createElement('caption'); groupbox.appendChild(caption); caption.setAttribute('label',fn); caption.setAttribute('id','caption_'+fn); // used for focus/keyboard navigation vbox = document.createElement('vbox'); groupbox.appendChild(vbox); // main display widget goes here + if (typeof g.changed[fn] != 'undefined') { addCSSClass(vbox,'copy_editor_field_changed'); } grid = util.widgets.make_grid( [ { 'flex' : 1 }, {}, {} ] ); vbox.appendChild(grid); grid.setAttribute('flex','1'); rows = grid.lastChild; -- 2.11.0