summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/edit/htdocs/graph/graph.js
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2011-02-20 22:03:45 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2011-02-20 22:03:45 +0000
commit844d7bf0cfde2bccca36c583d4221d7b461772cf (patch)
tree69b83dab6e102acacf9f367e7cb7a49722323a11 /sca-cpp/trunk/modules/edit/htdocs/graph/graph.js
parente589ec876037b21ad395e5e91b7272aa15a840e9 (diff)
Minor CSS fixes for cross-browser compatibility.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1072762 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-cpp/trunk/modules/edit/htdocs/graph/graph.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/sca-cpp/trunk/modules/edit/htdocs/graph/graph.js b/sca-cpp/trunk/modules/edit/htdocs/graph/graph.js
index c2cdb66e89..fa202d6b86 100644
--- a/sca-cpp/trunk/modules/edit/htdocs/graph/graph.js
+++ b/sca-cpp/trunk/modules/edit/htdocs/graph/graph.js
@@ -305,7 +305,6 @@ if (ui.isIE()) {
// component, reference and property titles
graph.comptitlewidthdiv = document.createElement('span');
graph.comptitlewidthdiv.style.visibility = 'hidden'
- graph.comptitlewidthdiv.style.fontWeight = 'bold'
div.appendChild(graph.comptitlewidthdiv);
graph.reftitlewidthdiv = document.createElement('span');
@@ -314,6 +313,7 @@ if (ui.isIE()) {
graph.proptitlewidthdiv = document.createElement('span');
graph.proptitlewidthdiv.style.visibility = 'hidden'
+ graph.proptitlewidthdiv.style.fontWeight = 'bold'
div.appendChild(graph.proptitlewidthdiv);
return vmlg;