Return-Path: Delivered-To: apmail-incubator-esme-dev-archive@minotaur.apache.org Received: (qmail 39001 invoked from network); 19 Aug 2009 09:00:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 19 Aug 2009 09:00:51 -0000 Received: (qmail 2405 invoked by uid 500); 19 Aug 2009 09:01:10 -0000 Delivered-To: apmail-incubator-esme-dev-archive@incubator.apache.org Received: (qmail 2358 invoked by uid 500); 19 Aug 2009 09:01:10 -0000 Mailing-List: contact esme-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: esme-dev@incubator.apache.org Delivered-To: mailing list esme-dev@incubator.apache.org Received: (qmail 2340 invoked by uid 99); 19 Aug 2009 09:01:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Aug 2009 09:01:09 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of hirsch.dick@gmail.com designates 209.85.218.221 as permitted sender) Received: from [209.85.218.221] (HELO mail-bw0-f221.google.com) (209.85.218.221) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Aug 2009 09:00:57 +0000 Received: by bwz21 with SMTP id 21so3265622bwz.12 for ; Wed, 19 Aug 2009 02:00:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=he0tSENwX4zdknPiCa+AKCow/w6pHOvFo28FGnlaw2I=; b=CXhUO0gtkiCRhSxIIgn+QvDOClDgd9Lbc56c6o4C1WXrrGJOmkR/l2GMw8KRB7rgEA NI9i0TJCHE83N4SMYg5SZ195afVZOsC3JfWkVgVQo6MWsZX5najvJimRdFEpodwhlX5I HLGquX33HoRK2KSjOrGHbPLtI0EWS/obXxAG4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=e9nJeB56VxyrruMDt5UVTeDooqx9Ymd+SEl5lqLadT6Pgv7KEpKyOJ3dO6THhkwGMN TRelq+yiWfY5SsoQNde24x3xpPVt4H2a7b1lxlZatYr7IOka7i2fNkAMVmZllegwb+fL JWJcxz/7ZKkukvg7DIEcboPX4OsqO4PZLAEvQ= MIME-Version: 1.0 Received: by 10.102.236.11 with SMTP id j11mr2354589muh.3.1250672436978; Wed, 19 Aug 2009 02:00:36 -0700 (PDT) In-Reply-To: <48d391a20908190151nbf3eca4w21d93fcce591b309@mail.gmail.com> References: <48d391a20908190151nbf3eca4w21d93fcce591b309@mail.gmail.com> Date: Wed, 19 Aug 2009 11:00:36 +0200 Message-ID: Subject: Re: UI Playground - Mrinal's UI on Stax From: Richard Hirsch To: esme-dev@incubator.apache.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org I'm impressed that you found "my editing" so fast. I had to remove this snippet, please I got an error for the "&&" part of the code. I deleted it, because I didn't have time to figure out to fix it. Probably, if you placed all the Javascript in an external file it would work. D On Wed, Aug 19, 2009 at 10:51 AM, Mrinal Wadhwa wr= ote: > http://esmecloudserverapache.dickhirsch.staxapps.net/track_view/ > > This was just my initial play on how some of Bill's ideas around sidebars > and a fluid resize can be handled .... I was also playing with the idea o= f > intelligently hiding sidebars if the page is resized below a certain widt= h > (500 for now). > > @Dick in the code you deployed on full function seems to be missing (it > seems checked in on my end?) ... so the intelligent resize is not working > ... > > > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0function onWindowResize(e)= { > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0var newWin= dowWidth =3D $(window).width(); > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0if(newWind= owWidth < HIDE_LEFTBAR_AT_WIDTH && !leftHiddenManually){ > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0if(!leftBarHidden) hideLeftBar(); > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0} > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0if(newWind= owWidth > HIDE_LEFTBAR_AT_WIDTH && !leftHiddenManually){ > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0if(leftBarHidden) showLeftBar(); > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0} > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0if(newWind= owWidth < HIDE_RIGHTBAR_AT_WIDTH && !rightHiddenManually){ > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0if(!rightBarHidden) hideRightBar(); > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0} > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0if(newWind= owWidth > HIDE_RIGHTBAR_AT_WIDTH && !rightHiddenManually){ > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0if(rightBarHidden) showRightBar(); > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0} > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0} > > > > > I have done some more experiments around this ... just haven't gotten aro= und > checking stuff in and now we're (at the company I started back in March) = are > close to an alpha release so things are kinda crazy at my end :) > > _ > Mrinal > http://www.mrinalwadhwa.com > > > > > > > > > > > > > > > > > > On Wed, Aug 19, 2009 at 1:57 PM, Richard Hirsch wr= ote: > >> Hi, >> >> I just hacked the current deployment and added Mrinal's initial UI >> from the UI branch. I just added contact information but someone could >> probably take this and run with it, adding the other message info >> >> http://esmecloudserverapache.dickhirsch.staxapps.net/track_view >> >> D. >> >