From xap-commits-return-501-apmail-incubator-xap-commits-archive=incubator.apache.org@incubator.apache.org Mon Sep 25 23:05:25 2006 Return-Path: Delivered-To: apmail-incubator-xap-commits-archive@locus.apache.org Received: (qmail 85702 invoked from network); 25 Sep 2006 23:05:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 25 Sep 2006 23:05:25 -0000 Received: (qmail 61808 invoked by uid 500); 25 Sep 2006 23:05:25 -0000 Delivered-To: apmail-incubator-xap-commits-archive@incubator.apache.org Received: (qmail 61785 invoked by uid 500); 25 Sep 2006 23:05:25 -0000 Mailing-List: contact xap-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: xap-dev@incubator.apache.org Delivered-To: mailing list xap-commits@incubator.apache.org Received: (qmail 61776 invoked by uid 99); 25 Sep 2006 23:05:25 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Sep 2006 16:05:25 -0700 Authentication-Results: idunn.apache.osuosl.org smtp.mail=jmargaris@apache.org; spf=permerror X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received-SPF: error (idunn.apache.osuosl.org: domain apache.org from 140.211.166.113 cause and error) Received: from [140.211.166.113] ([140.211.166.113:64767] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id 19/90-03290-3B068154 for ; Mon, 25 Sep 2006 16:05:24 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id E1CEE1A981D; Mon, 25 Sep 2006 16:05:21 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r449849 - /incubator/xap/trunk/src/xap/widgets/Label.js Date: Mon, 25 Sep 2006 23:05:21 -0000 To: xap-commits@incubator.apache.org From: jmargaris@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20060925230521.E1CEE1A981D@eris.apache.org> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jmargaris Date: Mon Sep 25 16:05:21 2006 New Revision: 449849 URL: http://svn.apache.org/viewvc?view=rev&rev=449849 Log: noWrap on by default Modified: incubator/xap/trunk/src/xap/widgets/Label.js Modified: incubator/xap/trunk/src/xap/widgets/Label.js URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/widgets/Label.js?view=diff&rev=449849&r1=449848&r2=449849 ============================================================================== --- incubator/xap/trunk/src/xap/widgets/Label.js (original) +++ incubator/xap/trunk/src/xap/widgets/Label.js Mon Sep 25 16:05:21 2006 @@ -39,6 +39,7 @@ this.table.cellPadding = "0px"; this.table.cellSpacing = "0px"; this.td = document.createElement('td'); + this.td.style.whiteSpace = "nowrap"; this.br = document.createElement('br'); var tbody = document.createElement('tbody');