Remove blur workaround in ol.control.Attribution

leftover from #3954
This commit is contained in:
Frederic Junod
2015-11-23 16:18:32 +01:00
parent 44a3595d77
commit 290a83e2ed

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' : '') +