Changeset 332

Show
Ignore:
Timestamp:
04/11/08 13:33:57 (5 years ago)
Author:
elemoine
Message:

fix indent and missing semi-colon (non-functional change)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/MapFish/client/mfbase/mapfish/widgets/Shortcuts.js

    r132 r332  
    5555    initComponent: function() { 
    5656        var combo = new Ext.form.ComboBox({ 
    57                 name: 'shortcuts', 
    58                 hiddenName: '', 
    59                 store: this.store, 
    60                 valueField: 'value', 
    61                 displayField:'text', 
    62                 editable: false, 
    63                 mode: 'local', 
    64                 triggerAction: 'all', 
    65                 emptyText:'Select a value ...', 
    66                 lazyRender: true, 
    67                 width: 150 
    68             }) 
     57            name: 'shortcuts', 
     58            hiddenName: '', 
     59            store: this.store, 
     60            valueField: 'value', 
     61            displayField:'text', 
     62            editable: false, 
     63            mode: 'local', 
     64            triggerAction: 'all', 
     65            emptyText:'Select a value ...', 
     66            lazyRender: true, 
     67            width: 150 
     68        }); 
    6969        combo.on('select', this.recenter, this); 
    7070