Changeset 82:b9436c5df86f for source


Ignore:
Timestamp:
Oct 28, 2008, 7:31:04 PM (16 years ago)
Author:
fnevgeny
Branch:
default
Phase:
public
Message:

Detect qx version as 0.8 if undefined...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/class/pf/Application.js

    r79 r82  
    22342234            w.setShowMaximize(false);
    22352235           
    2236             str = 'Plasma Formulary Interactive.<br/>'      +
    2237                   '$Revision$.'                      +
    2238                   '<p>Written by Evgeny Stambulchik.</p>'   +
    2239                   '<p>GUI built with the Qooxdoo-'          +
    2240                   qx.core.Version + ' toolkit.<br/>'        +
     2236            var version = qx.core.Version;
     2237            if (!version) {
     2238                version = '0.8';
     2239            }
     2240            str = 'Plasma Formulary Interactive.<br/>'    +
     2241                  '$Revision$.'                    +
     2242                  '<p>Written by Evgeny Stambulchik.</p>' +
     2243                  '<p>GUI built with the Qooxdoo-'        +
     2244                  version + ' toolkit.<br/>'              +
    22412245                  'Using Walter Zorn jsGraphics for drawing.</p>';
    22422246
Note: See TracChangeset for help on using the changeset viewer.