mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-12-06 16:48:28 +00:00
9 lines
162 B
JavaScript
9 lines
162 B
JavaScript
|
|
// tests if page is iframed
|
|
|
|
// github.com/Modernizr/Modernizr/issues/242
|
|
|
|
Modernizr.addTest('framed', function(){
|
|
return window.location != top.location;
|
|
});
|