Merge pull request #4481 from fredj/cleanup

Remove blur workaround in ol.control.Attribution
This commit is contained in:
Frédéric Junod
2015-11-24 08:37:46 +01:00

View File

@@ -99,13 +99,6 @@ ol.control.Attribution = function(opt_options) {
goog.events.listen(button, goog.events.EventType.CLICK,
this.handleClick_, false, this);
goog.events.listen(button, [
goog.events.EventType.MOUSEOUT,
goog.events.EventType.FOCUSOUT
], function() {
this.blur();
}, false);
var cssClasses = className + ' ' + ol.css.CLASS_UNSELECTABLE + ' ' +
ol.css.CLASS_CONTROL +
(this.collapsed_ && this.collapsible_ ? ' ol-collapsed' : '') +