mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 03:48:18 -07:00
19 lines
461 B
HTML
19 lines
461 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
|
<title>focusin event cross-frame (#14180)</title>
|
|
|
|
<script src="../../jquery.js"></script>
|
|
</head>
|
|
<body>
|
|
<input type="text" id="frame-input" />
|
|
<script>
|
|
// Call parent when this frame is fully loaded, it will mess with #frame-input
|
|
jQuery( window ).one( "load", function() {
|
|
window.parent.iframeCallback( document );
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|