mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-31 01:34:09 +02:00
parent
ed5c2c4190
commit
6e9b9cb8d6
24
public/js/icinga/behavior/autofocus.js
Normal file
24
public/js/icinga/behavior/autofocus.js
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
/*! Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
||||||
|
|
||||||
|
(function(Icinga, $) {
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
Icinga.Behaviors = Icinga.Behaviors || {};
|
||||||
|
|
||||||
|
var Autofocus = function (icinga) {
|
||||||
|
Icinga.EventListener.call(this, icinga);
|
||||||
|
this.on('rendered', this.onRendered, this);
|
||||||
|
};
|
||||||
|
|
||||||
|
Autofocus.prototype = new Icinga.EventListener();
|
||||||
|
|
||||||
|
Autofocus.prototype.onRendered = function(e) {
|
||||||
|
if (document.activeElement === document.body) {
|
||||||
|
$(e.target).find('.autofocus').focus();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
Icinga.Behaviors.Autofocus = Autofocus;
|
||||||
|
|
||||||
|
})(Icinga, jQuery);
|
Loading…
x
Reference in New Issue
Block a user