OpenLayers OpenLayers

Changeset 6997

Show
Ignore:
Timestamp:
04/22/08 23:27:00 (4 months ago)
Author:
crschmidt
Message:

Fix commas in Click example thanks to helpful patch from Pedro Simonetti.
(Closes #1525)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/openlayers/examples/click.html

    r6571 r6997  
    3131                    this.handler = new OpenLayers.Handler.Click( 
    3232                        this, { 
    33                             'click': this.trigger, 
     33                            'click': this.trigger 
    3434                        }, this.handlerOptions 
    3535                    ); 
     
    4040                    alert("You clicked near " + lonlat.lat + " N, " + 
    4141                                              + lonlat.lon + " E"); 
    42                 }, 
     42                } 
    4343 
    4444            });