mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-08 14:23:30 +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;
|
|
});
|