Removing unused variable.

This commit is contained in:
ahocevar
2012-06-25 06:30:10 +02:00
parent fbd4023d6a
commit 87459deb65

View File

@@ -276,8 +276,7 @@ ol.event.Events.prototype.triggerEvent = function(type, opt_evt) {
* @param {Event} evt Event object.
*/
ol.event.Events.prototype.handleBrowserEvent = function(evt) {
var me = ol.event.Events.prototype.handleBrowserEvent,
type = evt.type;
var type = evt.type;
if (this.listenerCount_[type] > 0) {
// add clientX & clientY to all events - corresponds to average x, y
var touches = evt.touches;