aboutsummaryrefslogtreecommitdiffstats
path: root/ui/safe-blur.js
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2015-07-15 20:17:12 -0400
committerAlexander Schmitz <arschmitz@gmail.com>2015-08-08 00:29:37 -0400
commit26fc3b5587ed117a972224ac661255998e59f9e1 (patch)
treea2adc41fddfb8e8b483124ce232d69b1b7a579ea /ui/safe-blur.js
parent2b84531ae9331f60e4d739fabca6d78abde89ae1 (diff)
downloadjquery-ui-26fc3b5587ed117a972224ac661255998e59f9e1.tar.gz
jquery-ui-26fc3b5587ed117a972224ac661255998e59f9e1.zip
Core: Move safe blur into its own module
Ref #9647
Diffstat (limited to 'ui/safe-blur.js')
-rw-r--r--ui/safe-blur.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/ui/safe-blur.js b/ui/safe-blur.js
new file mode 100644
index 000000000..525878268
--- /dev/null
+++ b/ui/safe-blur.js
@@ -0,0 +1,21 @@
+( function( factory ) {
+ if ( typeof define === "function" && define.amd ) {
+
+ // AMD. Register as an anonymous module.
+ define( [ "jquery", "./version" ], factory );
+ } else {
+
+ // Browser globals
+ factory( jQuery );
+ }
+} ( function( $ ) {
+return $.ui.safeBlur = function( element ) {
+
+ // Support: IE9 - 10 only
+ // If the <body> is blurred, IE will switch windows, see #9420
+ if ( element && element.nodeName.toLowerCase() !== "body" ) {
+ $( element ).trigger( "blur" );
+ }
+};
+
+} ) );